struct Coordinates { int x; int y; Coordinates(int a,int b) { x = a; y = b; }};
在Cygwin中编译时,我得到:
$g++ -o adventure adventure.cpp
adventure.cpp:36: error: no matching function for call to `Coordinates::Coordinates()’
adventure.cpp:22: note: candIDates are: Coordinates::Coordinates(const Coordinates&)
adventure.cpp:26: note: Coordinates::Coordinates(int,int)
不知道这里出了什么问题,我找不到关于C struct构造函数的更多信息.有任何想法吗?
解决方法 在代码的第36行(您没有显示),您正在创建此类的对象,但您没有将任何参数传递给构造函数.唯一有效的构造函数是带有两个int的构造函数,或者是默认的复制构造函数.添加一个没有参数的构造函数,或者更改代码以将a和b传递给构造函数. 总结以上是内存溢出为你收集整理的C构造函数参数全部内容,希望文章能够帮你解决C构造函数参数所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)