美好的一天,伙计们。
我有以下结构和类,
template <class T>
struct Node
{
T DataMember;
Node* Next;
};
template <class T>
class NCA
{
public:
NCA();
~NCA();
void push(T);
T pop();
void print();
void Clear();
private:
Node<T>* Head;
void* operator new(unsigned int);
};
我想实例化一个大小的类
IE。NCA[30] 与任何数组一样