gpt4 book ai didi

c++ - 当存在具有默认参数的构造函数时,c++构造函数中的歧义

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:27:00 25 4
gpt4 key购买 nike

 #include<iostream>
using namespace std;
class abc{
int a;
public: abc() { } //do nothing constructor
abc(int x=6){ a=x;} //constructor with default argument
};
main()
{
abc a;
....
}

我的问题是在这种情况下将调用哪个构造函数?请解释

最佳答案

如您所见here,由于歧义,这将无法编译。

prog.cpp:8:7: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
prog.cpp: In function ‘int main()’:
prog.cpp:10:11: error: call of overloaded ‘abc()’ is ambiguous
prog.cpp:10:11: note: candidates are:
prog.cpp:6:12: note: abc::abc(int)
prog.cpp:5:12: note: abc::abc()

关于c++ - 当存在具有默认参数的构造函数时,c++构造函数中的歧义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17770113/

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