问题
填空题
若结构Arith 中有一成员定义为char *op;,另有结构指针p定义为Arith *p=new Arith.,则要访问p所指对象中的。p成员所指向的对象,应使用表达式 【8】 。
答案
参考答案:*(p->op)
解析: 访问结构指针所指向的指针的值,首先得到指向的指针(p->op),然后计算值 *(p->op)。
若结构Arith 中有一成员定义为char *op;,另有结构指针p定义为Arith *p=new Arith.,则要访问p所指对象中的。p成员所指向的对象,应使用表达式 【8】 。
参考答案:*(p->op)
解析: 访问结构指针所指向的指针的值,首先得到指向的指针(p->op),然后计算值 *(p->op)。