當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ vector data()用法及代碼示例


std::vector::data()是C++中的STL,它返回直接指針,該指針指向向量內部用於存儲其擁有的元素的存儲陣列。

用法:

vector_name data()

參數:該函數不接受任何參數。


返回值:該函數返回一個指向數組中第一個元素的指針,該指針在向量內部使用。

以下示例程序旨在說明上述函數:

// C++ program to demonstrate the 
// vector::date() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialising vector 
    vector<int> vec = { 10, 20, 30, 40, 50 }; 
  
    // memory pointer pointing to the 
    // first element 
    int* pos = vec.data(); 
  
    // prints the vector 
    cout << "The vector elements are: "; 
    for (int i = 0; i < vec.size(); ++i) 
        cout << *pos++ << " "; 
  
    return 0; 
}
輸出:
The vector elements are: 10 20 30 40 50


相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 vector data() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。