hash_set::end (STL/CLR)
指定受控制序列的結尾。
iterator end();
備註
成員函式傳回一個雙向迭代器,其指向受控制序列的尾端。 您可用它來取得指向受控制序列結尾的迭代器;即使受控制序列的長度變更,它的狀態也不會變更。
範例
// cliext_hash_set_end.cpp
// compile with: /clr
#include <cliext/hash_set>
typedef cliext::hash_set<wchar_t> Myhash_set;
int main()
{
Myhash_set c1;
c1.insert(L'a');
c1.insert(L'b');
c1.insert(L'c');
// display initial contents " a b c"
for each (wchar_t elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// inspect last two items
Myhash_set::iterator it = c1.end();
--it;
System::Console::WriteLine("*-- --end() = {0}", *--it);
System::Console::WriteLine("*--end() = {0}", *++it);
return (0);
}
需求
標頭: <cliext/hash_set>
命名空間: cliext