array :: data()是C++ STL中的内置函数,该函数返回一个指向数组对象中第一个元素的指针。
句法:
array_name.data()
参数:该函数不接受任何参数。
返回值:该函数返回一个指针。
下面的程序说明了上述函数:
程序1:
// CPP program to demonstrate the
// array::data() function
#include
using namespace std;
int main()
{
array 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
using namespace std;
int main()
{
array 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
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。