共用方式為


hash_set::reference

注意事項注意事項

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

提供的項目參考的型別在 hash_set 儲存。

typedef list<typename Traits::value_type, typename Traits::allocator_type>::reference reference;

備註

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

範例

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

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_set <int> hs1;

   hs1.insert( 10 );
   hs1.insert( 20 );

   // Declare and initialize a reference &Ref1 to the 1st element
   int &Ref1 = *hs1.begin( );

   cout << "The first element in the hash_set is "
        << Ref1 << "." << endl;

   // The value of the 1st element of the hash_set can be changed
   // by operating on its (non-const) reference
   Ref1 = Ref1 + 5;

   cout << "The first element in the hash_set is now "
        << *hs1.begin() << "." << endl;
}
  

需求

標頭: <hash_set>

**命名空間:**stdext

請參閱

參考

hash_set 類別

標準樣板程式庫