作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,这是我的头文件(或至少其中的一部分):
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/
我是一名优秀的程序员,十分优秀!