共用方式為


hash_set::erase (STL/CLR)

移除指定位置的項目。

    iterator erase(iterator where);
    iterator erase(iterator first, iterator last);
    bool erase(key_type key)

參數

  • first
    要清除之範圍的開頭。

  • Key - 索引鍵
    要清除的索引鍵值。

  • last
    要清除之範圍的結尾。

  • where
    要清除的項目。

備註

第一個成員函式移除受控制序列中 where 指向的項目,並且回傳迭代器,其委派移除的項目之上的第一個剩餘項目,若沒有這樣的項目存在則傳回 hash_set::end (STL/CLR)()。 您可用它來移除單一項目。

第二個成員函式移除受控制序列中範圍 [first, last) 的項目,並且傳回迭代器,其委派移除的任何項目之上的第一個剩餘項目,若沒有這樣的項目存在則傳回 end()。 您可用它來移除零或多個連續的項目。

第三個成員函式移除受控制序列中擁有和 key 相等排序的索引值的任何項目,並且回傳移除的項目數。 您可用它來移除和計數符合指定索引鍵的項目。

每個項目消除所需花費的時間與受控制序列中的項目數之對數成比例。

範例

// cliext_hash_set_erase.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(); 
 
// erase an element and reinspect 
    System::Console::WriteLine("erase(begin()) = {0}", 
        *c1.erase(c1.begin())); 
 
// add elements and display " b c d e" 
    c1.insert(L'd'); 
    c1.insert(L'e'); 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// erase all but end 
    Myhash_set::iterator it = c1.end(); 
    System::Console::WriteLine("erase(begin(), end()-1) = {0}", 
        *c1.erase(c1.begin(), --it)); 
    System::Console::WriteLine("size() = {0}", c1.size()); 
    return (0); 
    } 
 
  

需求

標頭: <cliext/hash_set>

命名空間: cliext

請參閱

參考

hash_set (STL/CLR)

hash_set::clear (STL/CLR)