定义结构体指针访问员用-> 定义结构体变量访问员用. 例:struct AAA { int a; char b; }; struct AAA q; 访问员用:q.a; struct AAA *p; 访问员用:p->a;