c++ vector容器获取某一个索引的值
时间: 2023-11-28 08:24:19 浏览: 97
C++中vector容器的用法
5星 · 资源好评率100%
要获取 C++ 中 vector 容器中的某一个索引的值,可以使用下标运算符`[]`,例如:
```c++
#include <iostream>
#include <vector>
using namespace std;
int main() {
vector<int> vec = {1, 2, 3, 4, 5};
int index = 2;
int value = vec[index];
cout << "vector at index " << index << " is " << value << endl;
return 0;
}
```
输出:
```
vector at index 2 is 3
```
其中,`vec[index]`表示获取 `vec` 容器中索引为 `index` 的值。
阅读全文