次の方法で共有


set::empty

セットが空かどうかをテストします。

bool empty( ) const;

戻り値

セットが空の場合true ; セットが空である false

使用例

// set_empty.cpp
// compile with: /EHsc
#include <set>
#include <iostream>

int main( )
{
   using namespace std;
   set <int> s1, s2;
   s1.insert ( 1 );

   if ( s1.empty( ) )
      cout << "The set s1 is empty." << endl;
   else
      cout << "The set s1 is not empty." << endl;

   if ( s2.empty( ) )
      cout << "The set s2 is empty." << endl;
   else
      cout << "The set s2 is not empty." << endl;
}
  
  

必要条件

ヘッダー: <set>

名前空間: std

参照

関連項目

set Class

set::empty と set::clear

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