共用方式為


list::push_front (STL/CLR)

將新的第一個項目。

    void push_front(value_type val);

備註

成員函式插入具有值的項目val受控制序列的開頭。 您可以用它來在前面加上另一個項目至清單。

範例

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

需求

標頭: < cliext/清單 >

Namespace: cliext

請參閱

參考

list (STL/CLR)

list::pop_back (STL/CLR)

list::pop_front (STL/CLR)

list::push_back (STL/CLR)