次の方法で共有


array::end

被制御シーケンスの末尾を指定します。

reference end();
const_reference end() const;

解説

このメンバー関数は、シーケンスの末尾の次の位置を指し示すランダム アクセス反復子を返します。

使用例

 

// std_tr1__array__array_end.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" 
    Myarray::iterator it2 = c0.end(); 
    std::cout << " " << *--it2; 
    std::cout << std::endl; 
 
    return (0); 
    } 
 
  

必要条件

ヘッダー: の <配列>

名前空間: std

参照

関連項目

<array>

array クラス (STL)

array::back

array::begin

その他の技術情報

<array> メンバー