次の方法で共有


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 Class

vector::empty, vector::erase, と vector::push_back

標準テンプレート ライブラリ