typedef struct Queue{int *pBase;int front;int rear;}QUEUE;这里定义一个队列,front和rear分别为指向数组队首和队尾的指针,那为什么不是int *front和int *rear;求大神指教,感激不尽 查看完整描述