zoukankan      html  css  js  c++  java
  • 构造函数、析构函数、拷贝构造函数、赋值函数

    一个小例子,说明类的几大函数:

    #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;

  • 相关阅读:
    Linux OS共享文件
    源代码安装软件-MySQL
    细说Linux权限
    Linux进程作业的查看和杀死
    Linux_破解密码-营救模式
    找不同diff-打补丁patch
    WINDOWS自带md5校验工具
    猪,兔,等动物解剖平面图
    利用mimikatz破解远程终端凭据,获取服务器密码
    PHP中通过bypass disable functions执行系统命令的几种方式
  • 原文地址:https://www.cnblogs.com/welkinwalker/p/1950939.html
Copyright © 2011-2022 走看看