首页 > 其他 > 详细

构造函数调用规则

时间:2020-09-24 23:14:28      阅读:64      评论:0      收藏:0      [点我收藏+]

当只设置了有参构造函数时,编译器会默认不再有无参构造函数和析构函数,但是有拷贝构造函数

#include<iostream>
#include<string>
using namespace std;
class Student
{
private:
    int age;
public:
    Student(int a){
        age = a;
    }
}
int main(){
    system("chcp 65001");
    Student stu1;
    system("pause");
}

 

技术分享图片

 

报错,但是当进行拷贝构造函数时,

#include<iostream>
#include<string>
using namespace std;
class Student
{
private:
    int age;
public:
    Student(int a){
        age = a;
    }
    void printAge(){
        cout<<age<<endl;
    }
};
int main(){
    system("chcp 65001");
    Student stu1(12);
    Student stu2(stu1);
    stu2.printAge();
    system("pause");
    return 0;
}

技术分享图片

 

当只设置了拷贝函数时,默认的无参构造函数和有参构造函数和析构函数都不存在了

构造函数调用规则

原文:https://www.cnblogs.com/leishenwudi/p/13726902.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!