C++ 队列 emplace() 函数在队列的末尾添加一个新元素,跟在当前的后退元素之后。该函数对队列执行插入操作。
用法
template <class... Args> void emplace (Args&&... args);
参数
args:参数转发用于构造新元素的参数。它指定要插入到结束位置的新构造元素的值。
返回值
该函数仅用于添加新元素,不返回任何值。
例子1
#include<iostream>
#include<queue>
#include<string>
int main()
{
std::queue<std::string> newqueue;
newqueue.emplace("I am the first line");
newqueue.emplace("I am the second one");
std::cout << "Contents of new queue:\n";
while (!newqueue.empty())
{
std::cout << newqueue.front() << "\n";
newqueue.pop ();
}
return 0;
}
输出:
I am the first line I am the second one
例子2
#include<iostream>
#include<queue>
#include<string>
using namespace std;
int main()
{
queue<string> newpqueue;
newpqueue.emplace("portal");
newpqueue.emplace("computer science");
newpqueue.emplace("is a");
newpqueue.emplace("Javatpoint");
cout << "newpqueue = " ;
while(!newpqueue.empty( ) )
{
cout<< newpqueue.front() << " ";
newpqueue.pop();
}
return 0 ;
}
输出:
Javatpoint is a computer science portal
复杂度
对 emplace_back 进行一次调用。
数据竞争
队列中存在的所有元素都被修改,因为添加了一个新元素,所有其他元素的相应位置也发生了变化。
异常安全
提供等同于对底层容器对象执行的操作的保证。
相关用法
- C++ Queue empty()用法及代码示例
- C++ Queue push()用法及代码示例
- C++ Queue back()用法及代码示例
- C++ Queue size()用法及代码示例
- C++ Queue pop()用法及代码示例
- C++ unordered_map cbegin用法及代码示例
- C++ map lower_bound()用法及代码示例
- C++ list assign()用法及代码示例
- C++ std::max()用法及代码示例
- C++ std::string::push_back()用法及代码示例
- C++ multimap key_comp()用法及代码示例
- C++ Deque erase()用法及代码示例
- C++ std::less_equal用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ llround()用法及代码示例
- C++ getline(string)用法及代码示例
- C++ boost::algorithm::all_of()用法及代码示例
- C++ string::length()用法及代码示例
- C++ log2()用法及代码示例
- C++ lrint() and llrint()用法及代码示例
注:本文由纯净天空筛选整理自 C++ Queue emplace() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。