array::const_pointer
常数的指针类型的元素。
typedef const Ty *const_pointer;
备注
类型描述可用作常数的指针到序列的元素的对象。
示例
// std_tr1__array__array_const_pointer.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::const_pointer ptr = &*c0.begin();
std::cout << " " << *ptr;
std::cout << std::endl;
return (0);
}
要求
标头: <array>
命名空间: std