list::pop_back (STL/CLR)

移除最后一个元素。

    void pop_back();

备注

成员函数移除控件序列的最后一个元素,必须为非 null。您使用某个元素缩短列表返回到中。

示例

// 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/列表>

命名空间: cliext

请参见

参考

list (STL/CLR)

list::pop_front (STL/CLR)

list::push_back (STL/CLR)

list::push_front (STL/CLR)