gpt4 book ai didi

c++ - 如果我们在 C++ 中重载构造函数,默认构造函数是否仍然存在?

转载 作者:太空狗 更新时间:2023-10-29 19:59:38 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Why does the default parameterless constructor go away when you create one with parameters

我写了下面的程序

#include <iostream>
class A {
public:
A(int i) {std::cout<<"Overloaded constructor"<<std::endl;}
}

int main() {
A obj;
return 0;
}

编译程序时出现以下错误:

没有匹配的函数来调用 A::A()候选人是:A::A(整数)A::A(常量 A&)

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com