list::back と list::front
Visual C++ で list:: [戻る] と list:: 先行 の標準テンプレート ライブラリ関数を使用する方法に (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;
}
出力
front
back
middle
必要条件
ヘッダー : <list>