p[i]->type = 0;编译出错
提示base operand of `->' has non-pointer type
说明只有指针才能用->操作
提示base operand of `->' has non-pointer type
说明只有指针才能用->操作
2017-11-11
重新定义一个函数,,在新函数 里面实例化对象。。当函数执行完毕时,便会自动释放对象资源,也就调用了析构函数,,再在main()主入口函数中设置断点。可完整看到析构函数的执行。
void temp(){
Teacher Object111;
}
int main(){
temp();
system("pause");
}
void temp(){
Teacher Object111;
}
int main(){
temp();
system("pause");
}
2017-11-07