std::forward_list::emplace_front

public member function
<forward_list>
std::forward_list::emplace_front
template <class... Args>
  void emplace_front (Args&&... args);
Construct and insert element at beginning
Inserts a new element at the beginning of the forward_list, right before its current first element. This new element is constructed in place using args as the arguments for its construction.

This effectively increases the container size by one.

A similar member function exists, push_front, which either copies or moves an existing object into the container.

Parameters
args
Arguments forwarded to construct the new element.

Return value
none

The storage for the new element is allocated using allocator_traits<allocator_type>::construct(), which may throw exceptions on failure (for the default allocator, bad_alloc is thrown if the allocation request does not succeed).

Example
// forward_list::emplace_front
#include <iostream>
#include <forward_list>

int main ()
{
  std::forward_list< std::pair<int,char> > mylist;

  mylist.emplace_front(10,'a');
  mylist.emplace_front(20,'b');
  mylist.emplace_front(30,'c');

  std::cout << "mylist contains:";
  for (auto& x: mylist)
    std::cout << " (" << x.first << "," << x.second << ")";

  std::cout << std::endl;
  return 0;
}
 Edit & Run


Output:
mylist contains: (30,c) (20,b) (10,a) 

Complexity
Constant.

Iterator validity
No changes.
Member begin returns a different iterator value.

Data races
The container is modified.
No contained elements are accessed: concurrently accessing or modifying them is safe.

Exception safety
Strong guarantee: if an exception is thrown, there are no changes in the container.
If allocator_traits::construct is not supported with the appropriate arguments, it causes undefined behavior.

See also
forward_list::emplace_after
Construct and insert element (public member function )
forward_list::push_front
Insert element at beginning (public member function )
forward_list::pop_front
Delete first element (public member function )

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值