std::stack<T,Container>::push_range
来自 cppreference.com
template< container-compatible-range<value_type> R > void push_range( R&& rg ); |
(自 C++23 起) | |
将 rg 中每个元素的副本插入到 stack
中,就像使用
- c.append_range(std::forward<R>(rg)) 一样,如果这是一个有效的表达式(即底层容器 c 有一个合适的
append_range
成员函数),或者 - ranges::copy(rg, std::back_inserter(c)) 否则。
范围 rg 中的每个迭代器恰好被解引用一次。
内容 |
[编辑] 参数
rg | - | 一个 容器兼容范围,也就是说,一个 input_range ,其元素可以转换为 T |
[编辑] 返回值
(无)
[编辑] 复杂度
与 c.append_range 或 ranges::copy(rg, std::back_inserter(c)) 的复杂度相同(取决于内部使用哪个函数)。
[编辑] 备注
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 范围感知 构造和插入 |
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <ranges> #include <stack> template<typename Adaptor> requires (std::ranges::input_range<typename Adaptor::container_type>) void println(auto, const Adaptor& adaptor) { struct Container : Adaptor // gain access to protected Adaptor::Container c; { auto const& container() const { return this->c; } }; for (auto const& elem : static_cast<const Container&>(adaptor).container()) std::cout << elem << ' '; std::cout << '\n'; } int main() { std::stack<int> adaptor; const auto rg = {1, 3, 2, 4}; #ifdef __cpp_lib_containers_ranges adaptor.push_range(rg); #else std::ranges::for_each(rg, [&adaptor](auto e){ adaptor.push(e); }); #endif println("{}", adaptor); }
输出
1 3 2 4
[编辑] 参见
在顶部插入元素 (公共成员函数) |