共用方式為


hash_multiset::upper_bound

注意事項注意事項

這個 API 已經過時。替代方案是 unordered_multiset 類別

傳回 Iterator 以 hash_multiset 的第一個項目與大於指定的按鍵。

const_iterator upper_bound( 
   const Key& _Key 
) const; 
iterator upper_bound( 
   const Key& _Key 
);

參數

  • _Key
    引數索引鍵與項目的排序鍵會比較搜尋字串 hash_multiset 的。

傳回值

處理第一個項目位置。hash_multiset 一對索引鍵大於引數金鑰,或是處理成功最後一個項目的位置。hash_multiset 的 iteratorconst_iterator ,如果遊戲不為索引鍵中找到。

備註

在 Visual C++ .NET 2003 中, <hash_map><hash_set> 標頭檔的成員不在 std 命名空間中,而是移至 stdext 命名空間。 如需詳細資訊,請參閱 stdext 命名空間

範例

// hash_multiset_upper_bound.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_multiset <int> hms1;
   hash_multiset <int> :: const_iterator hms1_AcIter, hms1_RcIter;
   
   hms1.insert( 10 );
   hms1.insert( 20 );
   hms1.insert( 30 );

   hms1_RcIter = hms1.upper_bound( 20 );
   cout << "The first element of hash_multiset hms1" << endl
        << " with a key greater than 20 is: "
        << *hms1_RcIter << "." << endl;

   hms1_RcIter = hms1.upper_bound( 30 );

   // If no match is found for the key, end( ) is returned
   if ( hms1_RcIter == hms1.end( ) )
      cout << "The hash_multiset hms1 doesn't have an element "
           << "\n with a key greater than 30." << endl;
   else
      cout << "The element of hash_multiset hms1"
           << "with a key > 40 is: "
           << *hms1_RcIter << "." << endl;

   // An element at a specific location in the hash_multiset can be
   // found by using a dereferenced iterator addressing the location
   hms1_AcIter = hms1.begin( );
   hms1_RcIter = hms1.upper_bound( *hms1_AcIter );
   cout << "The first element of hms1\n with a key greater than "
        << endl << "that of the initial element of hms1 is: "
        << *hms1_RcIter << "." << endl;
}
  

需求

標頭: <hash_set>

**命名空間:**stdext

請參閱

參考

hash_multiset 類別

標準樣板程式庫