我有以下代码,我试图制作一个模板化的安全数组迭代器。
template <typename T>
class SArrayIterator;
template <typename E>
class SArray;
class SArrayIteratorException;
template <typename T>
class SArrayIterator<T> {//<--line 16
friend std::ostream &operator <<(std::ostream &os, const SArrayIterator<T> &iter);
public:
SArrayIterator<T>(SArray<T> &sArr) : beyondLast(sArr.length()+1), current(0), sArr(sArr){}
T &operator *(){
if (current == beyondLast) throw SArrayIteratorException("Attempt to dereference 'beyondLast' iterator");
return sArr[current];
}
SArrayIterator<T> operator ++(){
if (current == beyondLast) throw SArrayIteratorException("Attempt to increment 'beyondLast' iterator");
current++;
return *this;
}
bool operator ==(const SArrayIterator<T> &other) {return sArr[current] == other.sArr[current];}
bool operator !=(const SArrayIterator<T> &other) {return !(*this == other);}
private:
int first, beyondLast, current;
SArray<T> sArr;
};
然而,当我编译时,我得到了 -
array.h:16: error: partial specialization ‘SArrayIterator<T>’ does not specialize any template arguments
我不确定这意味着什么。我的猜测是它说我声明了一个但我从不使用它,但显然不是这样。
答案 0 :(得分:3)
这是正确的代码:
template <typename T>
class SArrayIterator {
当您编写class SArrayIterator<T>
时,编译器认为您将专门化模板,但您不是这种情况,因此您必须将<T>
保留。
你实际上也可以将<T>
留在课堂体内,例如:
SArrayIterator operator ++(){
答案 1 :(得分:1)
使用部分特化语法编写基本模板;基本模板的正确声明是:
template <typename T>
class SArrayIterator {
专业声明看起来像
template <>
class SArrayIterator<double> {