list::pop_back (STL/CLR)

移除最后的元素。

    void pop_back();

备注

移除成员函数控制序列中的最后一个元素,该元素绑定非空。 使用由的元素列表缩写在后面。

示例

// cliext_list_pop_back.cpp 
// compile with: /clr 
#include <cliext/list> 
 
int main() 
    { 
    cliext::list<wchar_t> c1; 
    c1.push_back(L'a'); 
    c1.push_back(L'b'); 
    c1.push_back(L'c'); 
 
// display contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// pop an element and redisplay 
    c1.pop_back(); 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

要求

标头: <cliext/list>

Namespace: cliext

请参见

参考

list (STL/CLR)

list::pop_front (STL/CLR)

list::push_back (STL/CLR)

list::push_front (STL/CLR)