共用方式為


multiset::empty

測試,如果有多個集合是空的。

bool empty( ) const;

傳回值

true ,如果有多個集合是空的, false ,如果多重集不能為空白。

範例

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

int main( )
{
   using namespace std;
   multiset <int> ms1, ms2;
   ms1.insert ( 1 );

   if ( ms1.empty( ) )
      cout << "The multiset ms1 is empty." << endl;
   else
      cout << "The multiset ms1 is not empty." << endl;

   if ( ms2.empty( ) )
      cout << "The multiset ms2 is empty." << endl;
   else
      cout << "The multiset ms2 is not empty." << endl;
}
  
  

需求

標題: <set>

命名空間: std

請參閱

參考

multiset Class

標準樣板程式庫