共用方式為


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 類別

標準樣板程式庫