单项选择题

已知带头结点的链队列指针Q,则该非空队列取队头元素操作的语句是(  )
    
A、   *x=Q->next->data;
B、 *x=Q->front->data;
C、  *x=Q->front->next->data;
D、 *x=Q->rear->data;