Merk
Tilgang til denne siden krever autorisasjon. Du kan prøve å logge på eller endre kataloger.
Tilgang til denne siden krever autorisasjon. Du kan prøve å endre kataloger.
delete operator cannot specify bounds for an array
Remarks
With the /Za (ANSI) option, the delete operator can delete an entire array but not parts or specific members of the array.
Example
The following example generates C2203:
// C2203.cpp
// compile with: /Za
int main() {
int *ar = new int[10];
delete [4] ar; // C2203
// try the following line instead
// delete [] ar;
}