带示例的 C++ STL 中的 array data()
数组是相同数据类型的元素的集合,这些元素存储在连续的内存位置中。
C++ 标准库包含许多支持数组运行的库。其中之一是 array data() 方法。
array data() 在 c++ 中返回一个指向对象首个元素的指针。
语法
array_name.data();
参数
该函数不接受任何参数。
返回类型
指向数组第一个元素的指针。
示例
阐述 Array Data() 方法使用方法的程序
#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
示例
阐述 Array Data() 方法使用方法的程序
#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
广告