帮我解释一下:
void PopOp(OpStack *opstack,char *op){ *op=opstack->array[opstack->top-1]; opstack->top--; }
这个函数中为什么出栈函数中的形参 op 要用指针行呢?