当我在 C++ 中多次初始化一个变量时,内存位置会发生什么?例如:
LPWSTR sampleString = new whcar_t[10];
//some operations here
sampleString = new wchar_t[2];
//some operations here
sampleString = new wchar_t[25];
//some operations here
如果我通过 using 删除内存,delete [] sampleString;
是否会清除所有关联的内存位置?