hash_set::const_reference

说明说明

此 API 已过时。另一种方法是 unordered_set Class

提供对 const 元素的类型在读取和执行的操作 const 一 hash_set 存储状态。

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

备注

在 Visual C++ .NET 2003 中,<hash_map><hash_set> 标头文件的成员中不再标准,命名空间,而是将 stdext 命名空间。有关更多信息,请参见 stdext 命名空间

示例

// hash_set_const_ref.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 const_reference &Ref1 
   // to the 1st element
   const int &Ref1 = *hs1.begin( );

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

   // The following line would cause an error because the 
   // const_reference cannot be used to modify the hash_set
   // Ref1 = Ref1 + 5;
}
  

要求

标头: <hash_set>

命名空间: stdext

请参见

参考

hash_set Class

标准模板库