new で割り当てたオブジェクトの有効期間
new 演算子によって割り当てられたオブジェクトは、それが定義されているスコープが終了しても破棄されません。 new 演算子は割り当てたオブジェクトへのポインターを返すため、プログラムでこのオブジェクトにアクセスするには、適切なスコープのポインターを定義する必要があります。 次に例を示します。
// expre_Lifetime_of_Objects_Allocated_with_new.cpp
// C2541 expected
int main()
{
// Use new operator to allocate an array of 20 characters.
char *AnArray = new char[20];
for( int i = 0; i < 20; ++i )
{
// On the first iteration of the loop, allocate
// another array of 20 characters.
if( i == 0 )
{
char *AnotherArray = new char[20];
}
}
delete [] AnotherArray; // Error: pointer out of scope.
delete [] AnArray; // OK: pointer still in scope.
}
この例では、ポインター AnotherArray がスコープ外になると、オブジェクトを削除できなくなります。