std::span
的推导指南
来自 cppreference.com
定义在头文件 <span> 中 |
||
(1) | ||
template< class It, class EndOrSize > span( It, EndOrSize ) -> span<std::remove_reference_t<std::iter_reference_t<It>>>; |
(自 C++20) (直到 C++26) |
|
template< class It, class EndOrSize > span( It, EndOrSize ) -> span<std::remove_reference_t<std::iter_reference_t<It>>, |
(自 C++26) | |
template< class T, std::size_t N > span( T (&)[N] ) -> span<T, N>; |
(2) | (自 C++20) |
template< class T, std::size_t N > span( std::array<T, N>& ) -> span<T, N>; |
(3) | (自 C++20) |
template< class T, std::size_t N > span( const std::array<T, N>& ) -> span<const T, N>; |
(4) | (自 C++20) |
template< class R > span( R&& ) -> span<std::remove_reference_t<std::ranges::range_reference_t<R>>>; |
(5) | (自 C++20) |
为 span
提供了以下 推导指南。
1) 允许从迭代器-哨兵对推断元素类型。 如果
EndOrSize
满足 integral-constant-like,它也允许推断静态范围。(自 C++26)。 只有当 It
满足 contiguous_iterator
时,此重载才会参与重载解析。2-4) 允许从内置数组和 std::array 推断静态范围。
[编辑] 示例
运行此代码
#include <array> #include <cstddef> #include <iomanip> #include <iostream> #include <span> #include <string_view> #include <vector> void print(std::string_view rem = "", std::size_t size_of = 0, std::size_t extent = 0) { if (rem.empty()) { std::cout << "name │ sizeof │ extent\n" "─────┼────────┼────────\n"; return; } std::cout << std::setw(4) << rem << " │ " << std::setw(6) << size_of << " │ "; if (extent == std::dynamic_extent) std::cout << "dynamic"; else std::cout << extent; std::cout << '\n'; } int main() { int a[]{1, 2, 3, 4, 5}; print(); std::span s1{std::begin(a), std::end(a)}; // guide (1) print("s1", sizeof s1, s1.extent); std::span s2{std::begin(a), 3}; // guide (1) print("s2", sizeof s2, s2.extent); #if __cplusplus > 202302L std::span s3{std::begin(a), std::integral_constant<std::size_t, 2>{}}; // guide (1) print("s3", sizeof s3, s3.extent); #endif // C++26 std::span s4{a}; // guide (2) print("s4", sizeof s4, s4.extent); std::span<int> s5{a}; // does not use a guide, makes a dynamic span print("s5", sizeof s5, s5.extent); std::array arr{6, 7, 8}; std::span s6{arr}; // guide (3) print("s6", sizeof s6, s6.extent); s6[0] = 42; // OK, element_type is 'int' const std::array arr2{9, 10, 11}; std::span s7{arr2}; // guide (4) print("s7", sizeof s7, s7.extent); // s7[0] = 42; // Error: element_type is 'const int' std::vector v{66, 69, 99}; std::span s8{v}; // guide (5) print("s8", sizeof s8, s8.extent); }
可能的输出
name │ sizeof │ extent ─────┼────────┼──────── s1 │ 16 │ dynamic s2 │ 16 │ dynamic s3 │ 8 │ 2 s4 │ 8 │ 5 s5 │ 16 │ dynamic s6 │ 8 │ 3 s7 │ 8 │ 3 s8 │ 16 │ dynamic