int *ipX = new int; if (ipX!=NULL) { int & irX = *ipX; // 正确 delete ipX; ipX = NULL; }
不仅可以引用变量,也可以引用指针的内容。