名前の付いたテンプレート クラスと、その中に名前がSkipList
付けられたネストされたクラスIterator
があります。
SkipList
次の定義に従います。
template <typename Key_T, typename Mapped_T, size_t MaxLevel = 5>
class SkipList
{
typedef std::pair<Key_T, Mapped_T> ValueType;
public:
class Iterator
{
Iterator (const Iterator &);
Iterator &operator=(const Iterator &);
Iterator &operator++();
Iterator operator++(int);
Iterator &operator--();
Iterator operator--(int);
private:
//some members
};
Iterator
コピーコンストラクターがあり、次のように定義した後、クラスの外で宣言しています。
template <typename Key_T, typename Mapped_T,size_t MaxLevel>
SkipList<Key_T,Mapped_T,MaxLevel>::Iterator(const SkipList<Key_T,Mapped_T,MaxLevel>::Iterator &that)
しかし、次のエラーが表示されます。
SkipList.cpp:134:100: error: ISO C++ forbids declaration of ‘Iterator’ with no type [-fpermissive]
SkipList.cpp:134:100: error: no ‘int SkipList<Key_T, Mapped_T, MaxLevel>::Iterator(const SkipList<Key_T, Mapped_T, MaxLevel>::Iterator&)’ member function declared in class ‘SkipList<Key_T, Mapped_T, MaxLevel>’
なにが問題ですか?