共用方式為


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

請參閱

參考

vector 類別

vector::empty、vector::erase 和 vector::push_back

標準樣板程式庫