C++?е????????????????
???????????? ???????[ 2013/5/2 10:02:35 ] ????????
????????
????C++?ж?????????????????е?????????????.???????????????????????????????????ü????????->?????????????????????
??????????->??????????????????ü?????????????????????????
????????->??????
????????????????????????????????????????β?(????????????????β???this)??->??????????????????????????????????????????????????????????????
???????????????????????????????????????????????????????????????????????
?????????????????????????ü??????????????????????????????????ò??????????????????????????????????ж?????????????????????????????
???????????????????????????????????????????????????????????ò???????????????鷵??????????????????г???????????У???????????????????????????????????????????????????????????????????????????????????????????Щ?????????????????£?????????
???????????
??????????????????????
#include <iostream>
using namespace std;
class A{
public:
void action()
{
cout<<"action in class A!"<<endl;
}
};
class B{
//A a;
public:
A a;
A* operator->(){
return &a;
}
void action(){
cout << "Action in class B!" << endl;
}
};
class C{
B b;
public:
B operator->(){
return b;
}
void action(){
cout << "Action in class C!" << endl;
}
};
int main()
{
C* pc = new C;
pc->action();
C c;
c->action();
return 0;
}
????????????????????
????Action in class C!
????Action in class A!
???????????
C* pc = new C;
pc->action();
??????????????Action in class C!
???????????pc????????????????????????????????ú??壬??pc??????????????????????action??
???????????
C c;
c->action();
???????????????
????c?????c?????????????????????????????????????????C??operator->()?????????????????????B??????????????B??operator->()?????????B??operator->()???????????????????????????ü?????????????B??operator->()??????????н???????????y????ú????????????action??????????????A??action()??????????????????operator->()???????????????????ú??????????????
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11