class list
{
public:
class node
{
private:
public:
T data;
node *next;
};
private:
static node *pool;
};
How to declare static member "pool"?
template
template
it is a little weird and very unfriendly... If I use "class" keyword to declare, I would be confuse by myself...
No comments:
Post a Comment