📜  取消引用 - 无论代码示例

📅  最后修改于: 2022-03-11 15:00:13.901000             🧑  作者: Mango

代码示例1
Dereferencing means taking away the reference and giving you what it was actually referring to.

Dereferencing is used to access or manipulate data contained in memory location pointed to by a pointer. 
*(asterisk) is used with pointer variable when dereferencing the pointer variable, it refers to variable being pointed, so this is called dereferencing of pointers.