![]() |
---|
此 API 已过时。另一种方法是 unordered_set Class。 |
返回解决在 hash_set 的第一个元素的常量迭代器。
const_iterator cbegin( ) const;
返回值
解决 const 双向的迭代器在成功空 hash_set的 hash_set Class 的第一个元素或位置。
备注
cbegin的返回值,就不能修改在 hash_set 对象的元素。
在 Visual C++ .NET 2003 中,<hash_map> 和 <hash_set> 标头文件的成员中不再标准,命名空间,而是将 stdext 命名空间。有关更多信息,请参见 stdext 命名空间。
示例
// hash_set_cbegin.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1;
hash_set <int>::const_iterator hs1_cIter;
hs1.insert( 1 );
hs1.insert( 2 );
hs1.insert( 3 );
hs1_cIter = hs1.cbegin( );
cout << "The first element of hs1 is " << *hs1_cIter << endl;
}
要求
标头: <hash_set>
命名空间: stdext