次のようなポインターがある場合:
int *test = new int;
test
そして、次のように指す別のポインターを作成します。
int *test2 = test;
次に削除しtest2
ます:
delete test2;
それはメモリも削除するということですかtest
、それとも呼び出す必要がdelete test
ありますか?
次のようなポインターがある場合:
int *test = new int;
test
そして、次のように指す別のポインターを作成します。
int *test2 = test;
次に削除しtest2
ます:
delete test2;
それはメモリも削除するということですかtest
、それとも呼び出す必要がdelete test
ありますか?