关于一个存放指针的链表的问题
CSpheralParticle:public CObject
{
public:
int number();
int b();
}
在Doc类下定义一个链表
struct LstParticle
{
CSpheralParticle *pParticle;
LstParticle* pNext;
};
然后定义了一个指针LstParticle* ps;
a=(ps->pParticle)->number();
程序编译通过但是运行时出错,为什么啊???