在类里面定义结构体指针,如果没有初始化,怎么值不是NULL?
有人知道吗?
struct storage
{
string types;
int sum;
storage *next;
};
class grammar
{
storage *base;
storage *pchange;
base=NULL;
};
请问这里为什么不可以把base赋值为NULL?