list::back 和 list::front

在 Visual C++ 演示如何使用 列表:: 返回列表:: 前面 标准 (STL)模板库函数。

reference back( ); 
const_reference back( ) const; 
reference front( ); 
const_reference front( ) const; 
void pop_back( ); 
void pop_front( ); 
void push_back(
   const T& x
);
void push_front(
   const T& x
);

备注

备注

类/参数名在原型不匹配版本在头文件。修改某些提高可读性。

返回 成员函数返回对控件序列的最后一个元素。 front 成员函数返回对控件序列的第一个元素。 pop_back 成员函数中移除该控件序列的最后一个元素。 pop_front 成员函数中移除该控件序列的第一个元素。 所有这些函数需要控件序列非空。 push_back 成员函数插入带值 x 的 元素在控件序列末尾。 push_front 成员函数插入带值 x 的 元素在控件序列开头。

示例

// liststck.cpp
// compile with: /EHsc
//  This example shows how to use the various stack
//                 like functions of list.
//
// Functions:
//    list::back
//    list::front
//    list::pop_back
//    list::pop_front
//    list::push_back
//    list::push_front

#pragma warning (disable:4786)
#include <list>
#include <string>
#include <iostream>

using namespace std ;

typedef list<string> LISTSTR;

int main()
{
    LISTSTR test;

    test.push_back("back");
    test.push_front("middle");
    test.push_front("front");

    // front
    cout << test.front() << endl;

    // back
    cout << test.back() << endl;

    test.pop_front();
    test.pop_back();

    // middle
    cout << test.front() << endl;
}

Output

front
back
middle

要求

**标题:**list

请参见

概念

标准模板库示例