解决
我正在编写一个代码,用于使用Visual C ++ 2010在C ++中创建链接列表。 当我想重载操作时,我得到这个错误
1> test.obj:错误LNK2019:未解析的外部符号“public:__thiscall MySet :: MySet(class MySet const&)”(?? 0MySet @@ QAE @ ABV0 @@ Z)在函数“public中引用: class MySet __thiscall MySet :: operator =(class MySet)“(?? 4MySet @@ QAE?AV0 @ V0 @@ Z)
请帮帮我。 我该怎么读这个错误
答案 0 :(得分:3)
您是否声明并定义了以下构造函数方法?
MySet::MySet(const MySet &other)
{
....
}