您的位置:首页 > 其它

构造函数、析构函数、拷贝构造函数、赋值函数

2011-02-10 20:43 239 查看
一个小例子,说明类的几大函数:

#include <iostream>using namespace std;class c_test{ public: c_test(); c_test(int para_a=3,string str="original"); c_test(const c_test & other); ~c_test(void); c_test & operator =(const c_test & other); private: string name; int num;};c_test::c_test(){}c_test::c_test(int para_a,string str){ this->num=para_a; this->name=str; cout<<"I am in constructor, my name is "<<this->name<<", my value is "<<this->num<<endl;}c_test::c_test(const c_test & other){ this->num=other.num; this->name=other.name+" copy"; cout<<"I am in copy constructor, my name is "<<this->name<<", my value is "<<this->num<<endl;}c_test & c_test::operator=(const c_test & other){ this->num=other.num; this->name=other.name; cout<<"I am in operator =, my name is "<<this->name<<", my value is "<<this->num<<endl; return *this;}c_test::~c_test(void){ cout<<"I am in destructor, my name is "<<this->name<<", my value is "<<this->num<<endl;}main(){ int a; int b; c_test obj_a(3,"a"); c_test obj_b(obj_a);//调用拷贝构造函数 c_test * p_a=new c_test(333,"s"); c_test * p_b=new c_test(2,"b"); *p_a=obj_a;//调用赋值函数 printf("0X%08X\n",&a); printf("0X%08X\n",&b); printf("0X%08X\n",p_a); delete p_b;}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐