|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
问题见代码中的main()函数内b->age这句调用的注释部分,忘高手给予解释!
#include<iostream>
using namespace std;
struct date{
int year;
int month;
int day;
};
struct Person{
string name;
int age;
bool gender;
double salary;
date birth;
Person()
{
cout<<"创建persond对象"<<this<<endl;
age=10;
}
~Person()
{
cout<<"释放persond对象"<<endl;
}
};
class autoptr{
public:
Person *p;
public:
autoptr(Person *p):p(p){cout<<this<<endl;}
~autoptr(){delete p;}
Person * operator->(){
return p;
}
};
int main()
{
//autoptr *a=new autoptr(new Person);
cout<<"=============================="<<endl;
autoptr b=new Person;
cout<<b->age<<endl; //为什么重载了->这个符号之后可以直接b->的访问方式,如果使用(b.operator->())->age这种很清楚的看的明白,但是如果直接使用b->age,b->就会调用上面重载的运算符,应该是返回一个指向Person对象的指针,也就意味着b->age执行之后应该变成p age这样才对啊,那这样就出现错误,没法调用啊,为什么给人的感觉是b->age执行是p->age这样的执行呢???
cout<<(b.operator->())->age<<endl;
system("pause");
}
|
|