CAtlArray::IsEmpty
Chiamare questo metodo per verificare se è vuota.
bool IsEmpty( ) const throw( );
Valore restituito
Restituisce true se la matrice è vuota in caso contrario, false.
Note
La matrice è vuota se non contiene elementi.Pertanto, anche se la matrice contiene gli elementi vuoti, non è vuota.
Esempio
// Define an array of chars
CAtlArray<char> cArray;
// Add an element
cArray.Add('a');
// Confirm array is not empty
ATLASSERT(!cArray.IsEmpty());
// Remove all elements
cArray.RemoveAll();
// Confirm array is empty
ATLASSERT(cArray.IsEmpty());
Requisiti
Header: atlcoll.h