怎么理解指针的指针的移动情况啊?

在学链式队列出队时,有这样的代码:
*p=front
front=front->link
delete p
请问这个p是会跟着front的移动而移动吗??

不会