array::data
取得第一個元素的位址。
Ty *data();
const Ty *data() const;
備註
成員函式傳回第一個元素的位址在受控制序列的。
範例
// std_tr1__array__array_data.cpp
// compile with: /EHsc
#include <array>
#include <iostream>
typedef std::array<int, 4> Myarray;
int main()
{
Myarray c0 = {0, 1, 2, 3};
// display contents " 0 1 2 3"
for (Myarray::const_iterator it = c0.begin();
it != c0.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
// display first element " 0"
Myarray::pointer ptr = c0.data();
std::cout << " " << *ptr;
std::cout << std::endl;
return (0);
}
需求
標題: <陣列>
命名空間: std