提问人:JohnZ 提问时间:5/15/2023 最后编辑:463035818_is_not_an_aiJohnZ 更新时间:5/15/2023 访问量:115
错误:调用复制构造函数 C++ 没有匹配函数
error: no matching function for call to copy constructor, c++
问:
提前对不起,这可能是一个糟糕的帖子。我已经在stackoverflow中搜索了回答我问题的预先存在的帖子,但是尽管这里的许多帖子都是相似的,但它们似乎都不适用于我的情况。 我有struct Node,被设计成一个容器。类角色,具有角色的名称和能力。 由于某种原因,如果没有默认构造函数,代码崩溃并出现错误:
#include <sstream>
#include <string>
#include <vector>
#include <iostream>
class Characters {
public:
int power;
std::string name;
Characters(int power, const std::string &name) : power(power), name(name) {}
// Characters() : power(0), name("") {}
//without above line, the code crashes with error: no matching function for call to 'Characters::Characters()' 39 | Node (const Node<T> &other) {
Characters(const Characters &other) {
power=other.power;
name = other.name;
}
};
template <typename T>
struct Node {
T val;
Node (const T &val) : val(val) {}
Node (const Node<T> &other) {
val= other.val;
}
};
int main() {
using namespace std;
Node<Characters> n1(Characters(4, "meh"));
Node<Characters> n2=n1;
return 0;
}
我不知道为什么在没有默认构造函数的情况下会发生这种情况。我可能只是不擅长使用谷歌,但我搜索的东西似乎都没有解决我的问题。
任何帮助将不胜感激。谢谢!
答:
1赞
JohnZ
5/15/2023
#1
感谢463035818_is_not_a_number指出了这一点!
如下:
Node (const Node<T> &other) {
val= other.val;
}
应该用这个代替。
Node (const Node &other) : val(other.val) { }
我误解了成员初始化列表的用法和属性。
评论
Character
: val(val)
是成员初始值设定项列表。正如你在这里看到的 godbolt.org/z/bY74Y1Pos 当你使用它时,错误就会消失