vector::data

ベクター内の最初の要素へのポインターを返します。

const_pointer data() const; 

戻り値

vector クラス 内の最初の要素へのポインター、または空の vector の次の位置を指すポインター。

使用例

// vector_data.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>
using namespace std;
int main()
{
    
   vector<int> vec;
    vector<int>::pointer pvec;
    vector<int>::const_pointer cpvec;

    vec.push_back(1);
    vec.push_back(2);

    // Iterate using direct pointer access, not iterators
    cout << "The vector contains:";
    cpvec = vec.data();
    for (size_t n = vec.size(); 0 < n; --n, ++cpvec)
    {
        cout << " " << *cpvec;
    }
    cout << endl;

    // Iterate using pointer and modify elements
    cout << "The vector now contains:";
    pvec = vec.data();
    *pvec = 20;
    for (size_t n = vec.size(); 0 < n; --n, ++pvec)
    {
        cout << " " << *pvec;
    }
    cout << endl;}
  

必要条件

ヘッダー: <vector>

名前空間: std

参照

関連項目

vector クラス

標準テンプレート ライブラリ