对象是说指针吧?如果是对象的指针访问其成员函数或者成员变量,就需要用->比如 有 class A{ int b; void GetB();}A theA;A* pTheA = &theA;那么 theA.b 也就是 pTheA->b 函数也一样