共用方式為


vector::erase (STL/CLR)

移除指定位置的項目。

    iterator erase(iterator where);
    iterator erase(iterator first, iterator last);

參數

  • 第一個
    要清除範圍的開頭。

  • last
    要清除範圍的結尾。

  • where
    若要清除的項目。

備註

第一個成員函式會移除所指的受控制序列的項目where。您可以用它來移除單一項目。

第二個成員函式會受控制序列的元素範圍中加以移除[first, last)。您可以用它來移除零或多個連續的項目。

這兩個成員函式傳回的 iterator,指派第一個以外的任何項目移除,剩餘的項目或vector::end (STL/CLR)()如果沒有這類項目。

清除項目,當項目列印份數中是以線性的擦掉手結尾到最接近序列的項目數。(當清除序列結尾處的一或多個項目,沒有項目複本發生的話。)

範例

// cliext_vector_erase.cpp 
// compile with: /clr 
#include <cliext/vector> 
 
int main() 
    { 
    cliext::vector<wchar_t> c1; 
    c1.push_back(L'a'); 
    c1.push_back(L'b'); 
    c1.push_back(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.push_back(L'd'); 
    c1.push_back(L'e'); 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// erase all but end 
    cliext::vector<wchar_t>::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/向量 >

Namespace: cliext

請參閱

參考

vector (STL/CLR)

vector::clear (STL/CLR)