The array是存储在连续内存位置的相同数据类型元素的集合。
C++ 标准库包含许多支持数组函数的库。其中之一是数组 data() 方法。
C++ 中的数组 data() 返回一个指向对象第一个元素的指针。
用法
array_name.data();
参数
该函数不接受任何参数。
返回类型
指向数组第一个元素的指针。
示例
Program To Illustrate The Use Of Array Data() Method −
#include <bits/stdc++.h>
using namespace std;
int main(){
array<float, 4> percentage = { 45.2, 89.6, 99.1, 76.1 };
cout << "The array elements are:";
for (auto it = percentage.begin(); it != percentage.end(); it++)
cout << *it << " ";
auto it = percentage.data();
cout << "\nThe first element is:" << *it;
return 0;
}
输出
The array elements are:45.2 89.6 99.1 76.1 The first element is:45.2
示例
Program To Illustrate The Use Of Array Data() Method
#include <bits/stdc++.h>
using namespace std;
int main(){
array<float, 4> percentage = { 45.2, 89.6, 99.1, 76.1 };
cout << "The array elements are:";
for (auto it = percentage.begin(); it != percentage.end(); it++)
cout << *it << " ";
auto it = percentage.data();
it++;
cout << "\nThe second element is:" << *it;
it++;
cout << "\nThe third element is:" << *it;
return 0;
}
输出
The array elements are:45.2 89.6 99.1 76.1 The second element is:89.6 The third element is:99.1
相关用法
- C++ Array swap()用法及代码示例
- C++ Array max_size()用法及代码示例
- C++ Array get()用法及代码示例
- C++ Array back()用法及代码示例
- C++ Array empty()用法及代码示例
- C++ Array tuple_size()用法及代码示例
- C++ Array fill()用法及代码示例
- C++ Array cbegin()用法及代码示例
- C++ Array at()用法及代码示例
- C++ Array cend()用法及代码示例
- C++ Array end()用法及代码示例
- C++ Array rbegin()用法及代码示例
- C++ Array begin()用法及代码示例
- C++ Array crend()用法及代码示例
- C++ Array size()用法及代码示例
- C++ Array rend()用法及代码示例
- C++ Array front()用法及代码示例
- C++ Array crbegin()用法及代码示例
- C++ Algorithm copy()用法及代码示例
- C++ Algorithm remove_if()用法及代码示例
注:本文由纯净天空筛选整理自Sudhir sharma大神的英文原创作品 Array data() in C++ STL with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。