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


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


array::data()是C++ STL中的內置函數,該函數返回指向數組對象中第一個元素的指針。

用法:

array_name.data()

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


返回值:該函數返回一個指針。

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

程序1:

// CPP program to demonstrate the 
// array::data() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    array<int, 5> arr = { 1, 2, 3, 4, 5 }; 
  
    // prints the array elements 
    cout << "The array elements are:"; 
    for (auto it = arr.begin(); it != arr.end(); it++) 
        cout << *it << " "; 
  
    // Points to the first element 
    auto it = arr.data(); 
  
    cout << "\nThe first element is:" << *it; 
  
    return 0; 
}
輸出:
The array elements are:1 2 3 4 5 
The first element is:1

程序2:

// CPP program to demonstrate the 
// array::data() function 
#include <bits/stdc++.h> 
using namespace std; 
int main() 
{ 
    array<int, 5> arr = { 1, 2, 3, 4, 5 }; 
  
    // prints the array elements 
    cout << "The array elements are:"; 
    for (auto it = arr.begin(); it != arr.end(); it++) 
        cout << *it << " "; 
  
    // Points to the first element 
    auto it = arr.data(); 
  
    // increment 
    it++; 
    cout << "\nThe second element is:" << *it; 
  
    // increment 
    it++; 
    cout << "\nThe third element is:" << *it; 
  
    return 0; 
}
輸出:
The array elements are:1 2 3 4 5 
The second element is:2
The third element is:3


相關用法


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