-4

我正在尝试重载赋值运算符,并不断收到以下错误:

StackLinked& operator=(const StackLinked& other);

template<typename DataType>
StackLinked<DataType> StackLinked<DataType>::StackLinked& operator=(const StackLinked& other)

错误:警告 C4346:“StackLinked::{ctor}”:从属名称不是类型

知道如何解决这个问题吗?我无法编辑标题部分,只能编辑实现。

4

1 回答 1

3
template<typename DataType>
StackLinked<DataType>& StackLinked<DataType>::operator=(const StackLinked& other)
于 2013-09-08T15:22:10.577 回答