共用方式為


multimap::empty

測試,如果多重對應是空的。

bool empty( ) const;

傳回值

true 多重,如果對應是空的; false ,如果多重對應非 null。

範例

// multimap_empty.cpp
// compile with: /EHsc
#include <map>
#include <iostream>

int main( )
{
   using namespace std;
   multimap <int, int> m1, m2;

   typedef pair <int, int> Int_Pair;
   m1.insert ( Int_Pair ( 1, 1 ) );

   if ( m1.empty( ) )
      cout << "The multimap m1 is empty." << endl;
   else
      cout << "The multimap m1 is not empty." << endl;

   if ( m2.empty( ) )
      cout << "The multimap m2 is empty." << endl;
   else
      cout << "The multimap m2 is not empty." << endl;
}
  

需求

標頭:<map>

命名空間: std

請參閱

參考

multimap 類別

標準樣板程式庫