当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。