std :: vector :: data()是C++中的STL,它返回指向指针的直接指针,该指针由向量内部使用以存储其拥有的元素。
句法:
vector_name.data()
参数:该函数不接受任何参数。
返回值:该函数返回一个指针,该指针指向向量在内部使用的数组中的第一个元素。
下面的程序说明了上述函数:
CPP
// C++ program to demonstrate the
// vector::date() function
#include
using namespace std;
int main()
{
// initialising vector
vector vec = { 10, 20, 30, 40, 50 };
// memory pointer pointing to the
// first element
int* pos = vec.data();
// prints the vector
cout << "The vector elements are: ";
for (int i = 0; i < vec.size(); ++i)
cout << *pos++ << " ";
return 0;
}
输出
The vector elements are: 10 20 30 40 50
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。