vector::data
Zwraca wskaźnik do pierwszego elementu w zakresie ataku.
const_pointer data() const;
Wartość zwracana
Wskaźnik do pierwszym elementem w vector — Klasa lub lokalizację sukcesy pustą vector.
Przykład
// 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;}
Wymagania
Nagłówek: < wektora >
Przestrzeń nazw: std