std::stack
的推导指南
来自 cppreference.com
定义在头文件 <stack> 中 |
||
template< class Container > stack( Container ) |
(1) | (自 C++17 起) |
template< class Container, class Alloc > stack( Container, Alloc ) |
(2) | (自 C++17 起) |
template< class InputIt > stack( InputIt, InputIt ) |
(3) | (自 C++23 起) |
template< class InputIt, class Alloc > stack( InputIt, InputIt, Alloc ) |
(4) | (自 C++23 起) |
template< ranges::input_range R > stack( std::from_range_t, R&& ) |
(5) | (自 C++23 起) |
template< ranges::input_range R, class Allocator > stack( std::from_range_t, R&&, Allocator ) |
(6) | (自 C++23 起) |
这些 推导指南 为 stack
提供,允许从底层容器类型推导。
1) 从参数推导出底层容器类型。
2) 与 (1) 相同,除了分配器也提供了。
3) 使用 std::deque<typename std::iterator_traits<InputIt>::value_type> 作为底层容器类型,从迭代器推导出元素类型。
4) 与 (3) 相同,除了分配器也提供了。
6) 与 (5) 相同,除了分配器也提供了。
这些重载仅当以下条件满足时才参与重载解析
-
InputIt
(如果存在)满足 LegacyInputIterator, -
Container
(如果存在)不满足 Allocator, - 对于 (3)(直到 C++23)(4)(自 C++23 起),
Alloc
满足 Allocator,并且 - std::uses_allocator_v<Container, Alloc> 如果
Container
和Alloc
都存在,则为 true。
注意:库确定类型是否不满足 LegacyInputIterator 的程度是未指定的,但至少整数类型不符合输入迭代器的要求。同样,库确定类型是否不满足 Allocator 的程度也是未指定的,但至少成员类型 Alloc::value_type
必须存在,并且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在被视为未计算的操作数时必须是格式良好的。
[编辑] 注意
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_adaptor_iterator_pair_constructor |
202106L | (C++23) | 用于 std::queue 和 std::stack 的迭代器对构造函数;重载 (2) 和 (4) |
__cpp_lib_containers_ranges |
202202L | (C++23) | 范围感知 的构造和插入;重载 (5) 和 (6) |
[编辑] 示例
运行此代码
#include <stack> #include <vector> int main() { std::vector<int> v = {1, 2, 3, 4}; std::stack s{v}; // guide #1 deduces std::stack<int, vector<int>> }