次のクラスをコンパイルしようとするとエラーが発生します
Stack.cpp:28: エラー: '::' トークンの前にコンストラクタ、デストラクタ、または型変換が必要です
#include <iostream>
using namespace std;
template <class T>
class Stack
{
public:
Stack(): head(NULL) {};
~Stack();
void push(T *);
T* pop();
protected:
class Element {
public:
Element(Element * next_, T * data_):next(next_), data(data_) {}
Element * getNext() const { return next; }
T * value() const {return data;}
private:
Element * next;
T * data;
};
Element * head;
};
Stack::~Stack()
{
while(head)
{
Element * next = head->getNext();
delete head;
head = next;
}
}