std::deque
的推导指南
来自 cppreference.com
在头文件 <deque> 中定义 |
||
template< class InputIt, class Alloc = std::allocator< |
(1) | (自 C++17 起) |
template< ranges::input_range R, class Alloc = std::allocator<ranges::range_value_t<R>> > |
(2) | (自 C++23 起) |
注意:库确定类型是否不满足 LegacyInputIterator 的程度未指定,只是作为最低限度,整数类型不符合输入迭代器。同样,库确定类型是否不满足 Allocator 的程度未指定,只是作为最低限度,成员类型 Alloc::value_type
必须存在,并且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 必须在被视为未评估的操作数时是良构的。
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 范围感知 构造和插入;重载 (2) |
[编辑] 示例
运行此代码
#include <deque> #include <vector> int main() { std::vector<int> v = {1, 2, 3, 4}; // uses explicit deduction guide to deduce std::deque<int> std::deque x(v.begin(), v.end()); // deduces std::deque<std::vector<int>::iterator> // first phase of overload resolution for list-initialization selects the candidate // synthesized from the initializer-list constructor; second phase is not performed // and deduction guide has no effect std::deque y{v.begin(), v.end()}; }