list::emplace
将构造的元素插入到列表中的指定位置。
void emplace_back( iterator _Where, Type&& _Val );
参数
参数 |
描述 |
_Where |
目标 list 类 中插入第一个元素的位置。 |
_Val |
添加到 list 末尾的元素。 |
备注
如果引发了异常,list 将保持不变,该异常将被重新引发。
示例
// list_emplace.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
#include <string>
int main( )
{
using namespace std;
list <string> c2;
string str("a");
c2.emplace(c2.begin(), move( str ) );
cout << "Moved first element: " << c2.back( ) << endl;
}
要求
标头:<list>
命名空间: std