我有一个指向指针的数组,当我执行array [index]=classpointer;并调用delete classpointer;时,存储在array[index]中的值会变为NULL吗? 最佳答案 否。它仍然指向classpointer先前指向的位置,或者换句话说,它悬挂了。