vector::empty
測試向量是否包含任何項目。
bool empty( ) const;
傳回值
如果向量是空的,則為 true;如果向量不是空的,則為 false。
範例
// vector_empty.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
int main( )
{
using namespace std;
vector <int> v1;
v1.push_back( 10 );
if ( v1.empty( ) )
cout << "The vector is empty." << endl;
else
cout << "The vector is not empty." << endl;
}
需求
標頭:<vector>
命名空間: std