list::empty
測試清單是否為空的。
bool empty( ) const;
傳回值
如果是空的,則為 true,若清單不是空的,則為 false。
範例
// list_empty.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list <int> c1;
c1.push_back( 10 );
if ( c1.empty( ) )
cout << "The list is empty." << endl;
else
cout << "The list is not empty." << endl;
}
需求
標頭:<list>
命名空間: std