码迷,mamicode.com
首页 > 其他好文 > 详细

拷贝构造函数

时间:2018-01-13 11:22:59      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:重载   alt   class   cout   const   out   inf   ons   执行   

例如类:   class Student{

     public:

        Student(){

          cout<<"student"<<endl;

         }

     };

定义:Student stu1;                //这个三个实例化中,只有第一个会打印student,即执行构造函数

   Student stu2=stu1;        //另外的两个执行的是拷贝构造函数,不会打印student

   Student stu3(stu1);

拷贝构造函数:                                                     //注:可以有返回值,但是不可以重载;

    class Student{

    public:

      Student(){m_name="jo";}

      Student(const Student& stu){}               //未定义则系统自动默认一个,即赋值用

                         //即实例Student stu作为   =赋值 或者   ()赋值时,会自动调用拷贝 构造函数;

                         //而定义stu的时候(Student stu)会自动调用 构造函数

    Private:

       string m_name;

    };

 

 

技术分享图片技术分享图片

拷贝构造函数

标签:重载   alt   class   cout   const   out   inf   ons   执行   

原文地址:https://www.cnblogs.com/dart2100/p/8278350.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!