![]() |
---|
此 API 已过时。另一种方法是 unordered_set Class。 |
返回解决成功最后一个元素的位置已取消的 hash_set 的常量迭代器。
const_reverse_iterator crend( ) const;
返回值
解决成功最后一个元素的位置。是相反的 hash_set Class 的常量反转双向迭代器 (在前面 unreversed hash_set的第一个元素) 的位置。
备注
正 hash_set::end 使用 hash_set,crend 用于取消的 hash_set。
crend的返回值,就不能修改 hash_set 对象。
crend 可用于测试对反向迭代器是否已到达其 hash_set的末尾。
在 Visual C++ .NET 2003 中,<hash_map> 和 <hash_set> 标头文件的成员中不再标准,命名空间,而是将 stdext 命名空间。有关更多信息,请参见 stdext 命名空间。
示例
// hash_set_crend.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_reverse_iterator hs1_crIter;
hs1.insert( 10 );
hs1.insert( 20 );
hs1.insert( 30 );
hs1_crIter = hs1.crend( );
hs1_crIter--;
cout << "The last element in the reversed hash_set is "
<< *hs1_crIter << "." << endl;
}
要求
标头: <hash_set>
命名空间: stdext