作用
1.构造对象。
2.初始化对象。
3.类型转换。
include<iostream>
using namespace std;
class Test{
public:
Test(int d = 0){ //构造函数名和类名一致
cout<<"Create Test Object:"<<this<<endl;
data = d; //初始化
}
~Test(){
cout<<"Free Test Object:"<<this<<endl;
}
private:
int data;
};
void main(){
Test t;
t = 100; //实际上存在一个临时对象,对象和对象进行赋值,因此会执行两次构造函数和两次析构函数,一共输出四条语句
}
注意:
include<iostream>
using namespace std;
class Test{
public:
Test(){ //这个构造函数不能通过一个整型数据产生一个临时变量,所以下面语句会报错
cout<<"Create Test Object:"<<this<<endl;
data = 0; //初始化
}
~Test(){
cout<<"Free Test Object:"<<this<<endl;
}
private:
int data;
};
void main(){
Test t;
t = 100; //这里就会报错,因为找不到中间的临时对象
}
对象给整型赋值
include<iostream>
using namespace std;
class Test{
public:
Test(int d = 0){
cout<<"Create Test Object:"<<this<<endl;
data = d; //初始化
}
~Test(){
cout<<"Free Test Object:"<<this<<endl;
}
public:
operator int(){ //类型转换,将Test对象强制转换为int型
return data;
}
int GetData()const{
return data;
}
private:
int data;
};
void main(){
Test t;
t = 100; //隐式转换,如果构造函数加上了explicit,形如:explicit Test(int d){}。则这条语句变成显示转换,要改写成:t = (Test)100;
int value;
value = t; //value = t.data,这里不行,因为找不到临时变量,用operator就行
//value = (int)t; //这是不行的,编译器不知道如何把对象转换为整型
value = t.GetData(); //这是直接通过公有函数进行赋值
}
版权声明:本文为博主原创文章,如有错误,恳请大家在评论区指出,在下不胜感激~如要转载注明出处即可~