首页 > 代码库 > C++中关于指针运算符->的重载问题
C++中关于指针运算符->的重载问题
#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->age就相当于(b.operator->())->age,也就意味着->符号很特殊,重载之后,利用b->age这种调用方式,编译器会自动给它加一个->已达到指针变量调用的目的
cout<<(b.operator->())->age<<endl;
system("pause");
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。