CAtlArray::IsEmpty
telefonar Esse método para testar se a matriz está vazia.
bool IsEmpty( ) const throw( );
Valor de retorno
Retorna VERDADEIRO se a matriz estiver vazia, caso contrário, false.
Comentários
A matriz é considerada vazio se ela não contém elementos.Portanto, mesmo se a matriz contém os elementos vazios, não está vazio.
Exemplo
// 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());
Requisitos
Cabeçalho: atlcoll.h