代替
int *i = new int; ... delete i;
我可以这样做吗?
int i; ... delete &i;
c++ memory-management
c++ ×1
memory-management ×1