class Expression
{
private:
ToStringDisplay* toString;
public:
......
};
// Some code
if (toString == NULL)
// do something
当我调试时, toString 指的是一个地址,而不是 NULL。但是,如果我static ToStringDisplay* toString;
改为声明, toString 指的是 NULL 吗?它们之间有什么区别?