共用方式為


array::front

存取第一個項目。

reference front();
const_reference front() const;

備註

成員函式以傳回受控制序列的第一個項目的參考,必須為非空白。

範例

 

// std_tr1__array__array_front.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" 
    std::cout << " " << c0.front(); 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

需求

標題: <陣列>

命名空間: std

請參閱

參考

<array>

array 類別 (STL)

array::back