list::pop_front (STL/CLR)
移除第一個項目。
void pop_front();
備註
成員函式移除受控制序列的第一個項目,此序列不能為空序列。 您可以使用它以從清單的前端縮短一個項目。
範例
// cliext_list_pop_front.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_front();
for each (wchar_t elem in c1)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
需求
標頭 : <cliext/list>
命名空間: cliext