C++调用无参构造函数

2021/5/1 14:25:24

本文主要是介绍C++调用无参构造函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

之前不知道为什么调用无参构造函数不能加(),是因为加上了()这样的形式就和函数声明语句一样了

#include<bits/stdc++.h>
using namespace std;
const int maxn=1e5+5;
class people{
    public:
        people(){
            printf("123\n");
        }
};
class student :public people{
    
    public:
        int x=1;
        //调用下面这个构造函数,如果不传参数会和 student()重复,如果传一个参数会和 student(int x)重复
        // student(int x=2,int y=1){
        //     printf("111\n");
        // }
        student(int x){
            printf("222\n");
        }
        student(){
            printf("5555\n");
        }
};
int main()
{
    //下面这样写不是调用类的无参构造函数,而是一个函数的声明(可不是创建一个student类型的对象)。所以调用无参构造函数不要加()
    //student stu();
    student stu;
    printf("%d\n",stu.x);

    return 0;
}

 

 



这篇关于C++调用无参构造函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程