CAtlArray::IsEmpty
Chamar esse método para testar se a matriz está vazia.
bool IsEmpty( ) const throw( );
Retorna true se a matriz está vazia, falso caso contrário.
A matriz é vazia se não contém elementos.Portanto, mesmo se a matriz contém os elementos vazios, não está vazia.
// 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());
Cabeçalho: atlcoll.h