gpt4 book ai didi

c++ - 类模板,预期的构造函数,析构函数

转载 作者:行者123 更新时间:2023-11-30 03:02:25 25 4
gpt4 key购买 nike

好的,这是我的头文件(或至少其中的一部分):

template<class T>

class List
{
public:
.
:
List& operator= (const List& other);
.
:
private:
.
:
};

这是我的 .cc 文件:

template <class T>
List& List<T>::operator= (const List& other)
{
if(this != &other)
{
List_Node * n = List::copy(other.head_);
delete [] head_;
head_ = n;
}
return *this;
}

上线List& List<T>::operator= (const List& other)我收到编译错误“'&' 标记之前的预期构造函数、析构函数或类型转换”。我在这里做错了什么?

最佳答案

返回类型 List&没有模板参数就不能使用。它需要是 List<T>& .

template <class T>
List<T>& List<T>::operator= (const List& other)
{
...
}


但请注意,即使您修复了此语法错误,您仍会遇到链接器问题,因为模板函数定义需要放在头文件中。参见 Why can templates only be implemented in the header file?获取更多信息。

关于c++ - 类模板,预期的构造函数,析构函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10173630/

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