次の方法で共有


CAtlList::IsEmpty

リストが空であるかどうかを判定するためにこのメソッドを呼び出します。

bool IsEmpty( ) const throw( );

戻り値

リストのオブジェクトが含まれていない場合は true の場合は false を返します。

使用例

// Define the integer list
CAtlList<int> myList;

// Populate the list
myList.AddTail(1);
myList.AddTail(2);
myList.AddTail(3);
myList.AddTail(4);

// Confirm not empty
ATLASSERT(myList.IsEmpty() == false);

// Remove the tail element
myList.RemoveTailNoReturn();

// Confirm not empty
ATLASSERT(myList.IsEmpty() == false);

// Remove the head element
myList.RemoveHeadNoReturn();

// Confirm not empty
ATLASSERT(myList.IsEmpty() == false);

// Remove all remaining elements
myList.RemoveAll();

// Confirm empty
ATLASSERT(myList.IsEmpty() == true);   

必要条件

Header: atlcoll.h

参照

関連項目

CAtlList クラス

CAtlList::GetCount