共用方式為


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 類別

標準樣板程式庫