间接访问和取消引用在访问 C 中的指针值时有什么区别吗?

Are there any differences between indirection and Dereferencing when they access the value of a pointer in C?

我正在复习指针以及如何访问指针指向的内存位置的内容。

我的问题是: 在 C 中访问指针的值时,间接和取消引用之间有什么区别吗?

我可以在当前的 C11 草案中找到 "dereferencing"(以及 "dereference" 的 none),这是在脚注中,在短语 "dereferencing a pointer".标准调用一元 * 间接运算符 .

我会觉得 "indirecting a pointer" 很奇怪(标准不使用动词 "to indirect"),但是这个问题更多的是关于语言学而不是编程。我不知道 "dereferencing" 的任何常见用法意味着除了间接之外的其他含义,我怀疑是否存在。 This Wikipedia article 调用一元 * 间接寻址和取消引用。