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
を使用してメモリを削除するdelete [] sampleString;
と、関連するすべてのメモリ位置がクリアされますか?