vector的begin函數用于返回一個指向vector第一個元素的迭代器。迭代器是一種類似指針的對象,可以用于遍歷容器中的元素。
使用begin函數的一般步驟如下:
示例代碼如下:
#include <iostream>
#include <vector>
int main() {
std::vector<int> numbers {1, 2, 3, 4, 5};
// 使用begin函數獲取第一個元素的迭代器
std::vector<int>::iterator it = numbers.begin();
// 使用迭代器訪問容器中的元素
std::cout << *it << std::endl; // 輸出: 1
return 0;
}
在上述示例中,我們創建了一個包含5個整數的vector對象。然后,我們使用begin函數獲取第一個元素的迭代器,并將其存儲在std::vector<int>::iterator
類型的變量it
中。最后,我們通過解引用迭代器it
來訪問容器中的元素,輸出第一個元素的值1。