std::data
来自 cppreference.com
定义在头文件 <array> 中 |
||
定义在头文件 <deque> 中 |
||
定义在头文件 <flat_map> 中 |
||
定义在头文件 <flat_set> 中 |
||
定义在头文件 <forward_list> 中 |
||
定义在头文件 <inplace_vector> 中 |
||
定义在头文件 <iterator> 中 |
||
定义在头文件 <list> 中 |
||
定义在头文件 <map> 中 |
||
定义在头文件 <regex> 中 |
||
定义在头文件 <set> 中 |
||
定义在头文件 <span> 中 |
||
定义在头文件 <string> 中 |
||
定义在头文件 <string_view> 中 |
||
定义在头文件 <unordered_map> 中 |
||
定义在头文件 <unordered_set> 中 |
||
定义在头文件 <vector> 中 |
||
template< class C > constexpr auto data( C& c ) -> decltype(c.data()); |
(1) | (自 C++17 起) |
template< class C > constexpr auto data( const C& c ) -> decltype(c.data()); |
(2) | (自 C++17 起) |
template< class T, std::size_t N > constexpr T* data( T (&array)[N] ) noexcept; |
(3) | (自 C++17 起) |
template< class E > constexpr const E* data( std::initializer_list<E> il ) noexcept; |
(4) | (自 C++17 起) |
返回指向包含范围元素的内存块的指针。
1,2) 返回 c.data().
3) 返回 array.
4) 返回 il.begin().
内容 |
[编辑] 参数
c | - | 具有 data() 成员函数的容器或视图 |
array | - | 任意类型的数组 |
il | - | 一个 std::initializer_list |
[编辑] 返回值
1,2) c.data()
3) array
4) il.begin()
[编辑] 异常
1) 可能会抛出实现定义的异常。
[编辑] 备注
对于 std::initializer_list 的重载是必需的,因为它没有成员函数 data
。
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_nonmember_container_access |
201411L | (C++17) | std::size()、std::data() 和 std::empty() |
[编辑] 可能实现
第一个版本 |
---|
template<class C> constexpr auto data(C& c) -> decltype(c.data()) { return c.data(); } |
第二个版本 |
template<class C> constexpr auto data(const C& c) -> decltype(c.data()) { return c.data(); } |
第三个版本 |
template<class T, std::size_t N> constexpr T* data(T (&array)[N]) noexcept { return array; } |
第四个版本 |
template<class E> constexpr const E* data(std::initializer_list<E> il) noexcept { return il.begin(); } |
[编辑] 示例
运行此代码
#include <cstring> #include <iostream> #include <string> int main() { std::string s{"Hello world!\n"}; char a[20]; // storage for a C-style string std::strcpy(a, std::data(s)); // [s.data(), s.data() + s.size()] is guaranteed to be an NTBS since C++11 std::cout << a; }
输出
Hello world!
[编辑] 参见
(C++20) |
获取指向连续范围开头的指针 (自定义点对象) |
(C++20) |
获取指向只读连续范围开头的指针 (自定义点对象) |