list::emplace_front
イン プレースで構築された要素をリストの先頭に追加します。
void emplace_front( Type&& _Val );
パラメーター
パラメーター |
説明 |
_Val |
list クラス の先頭に追加する要素。 |
解説
例外がスローされた場合、list は変更されず、例外が再度スローされます。
使用例
// list_emplace_front.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
list <string> c2;
string str("a");
c2.emplace_front( move( str ) );
cout << "Moved first element: " << c2.front( ) << endl;
}
必要条件
ヘッダー: <list>
名前空間: std