std::vector::data
STD::向量::数据
T* data( | | (since C++11) |
---|---|---|
const T* data() const; | | (since C++11) |
返回指向作为元素存储的基础数组的指针。指针就是这样的范围。[data( data() + size())始终
是有效范围,即使容器为空%28data()在这
种情况下%29是不可取消的。
参数
%280%29
返回值
指向基础元素存储的指针。对于非空容器,请返回&front()
...
复杂性
常量。
例外
noexcept
规格:
noexcept
另见
front | access the first element (public member function) |
---|---|
back | access the last element (public member function) |
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。