std::multiset
的推导指南
定义在头文件 <set> 中 |
||
template< class InputIt, |
(1) | (自 C++17) |
template< class Key, class Comp = std::less<Key>, |
(2) | (自 C++17) |
template< class InputIt, class Alloc > multiset( InputIt, InputIt, Alloc ) |
(3) | (自 C++17) |
template< class Key, class Alloc > multiset( std::initializer_list<Key>, Alloc ) |
(4) | (自 C++17) |
template< ranges::input_range R, class Compare = less<ranges::range_value_t<R>>, class Alloc = std::allocator<ranges::range_value_t<R>> > |
(5) | (自 C++23) |
template< ranges::input_range R, class Alloc > multiset( std::from_range_t, R&&, Alloc ) |
(6) | (自 C++23) |
只有当 InputIt
满足 LegacyInputIterator、Alloc
满足 Allocator 且 Comp
不满足 Allocator 时,这些重载才会参与重载解析。
注意:库确定类型是否不满足 LegacyInputIterator 的程度是未指定的,但至少整数类型不符合输入迭代器的条件。同样,库确定类型是否不满足 Allocator 的程度也是未指定的,但至少成员类型 Alloc::value_type
必须存在,并且表达式 std::declval<Alloc&>().allocate(std::size_t{}) 在被视为未求值操作数时必须是良构的。
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_containers_ranges |
202202L | (C++23) | 范围感知 的构造和插入;重载 (5,6) |
[编辑] 示例
#include <set> int main() { // guide #2 deduces std::multiset<int> std::multiset s = {1, 2, 3, 4}; // guide #1 deduces std::multiset<int> std::multiset s2(s.begin(), s.end()); }