array::back

访问最后一个元素。

reference back();
const_reference back() const;

备注

成员函数返回对控件序列的最后一个元素,必须为非null。

示例

 

// std__array__array_back.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 last element " 3" 
    std::cout << " " << c0.back(); 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

要求

标头: <array>

命名空间: std

请参见

参考

<array>

array Class (TR1)

array::front