我正在尝试制作移动构造函数,但出现错误
expected ',' or '...' before '&&' token
这是导致问题的行:
List(List&& list) noexcept;
我还有一个看起来相似的复制构造函数。不知道这是否会引起麻烦:
List(const List& copy);
(这都在我的 List 类的头文件中)
我正在尝试制作移动构造函数,但出现错误
expected ',' or '...' before '&&' token
这是导致问题的行:
List(List&& list) noexcept;
我还有一个看起来相似的复制构造函数。不知道这是否会引起麻烦:
List(const List& copy);
(这都在我的 List 类的头文件中)