用c++创建一个数据类型是int型的二维vector容器
时间: 2023-09-11 22:12:25 浏览: 101
C++中vector容器的用法
5星 · 资源好评率100%
可以使用以下代码来创建一个数据类型为int的二维vector容器:
```cpp
#include <vector>
int main() {
int rows = 3; // 行数
int cols = 4; // 列数
// 创建一个二维vector容器
std::vector<std::vector<int>> myVector(rows, std::vector<int>(cols));
// 对容器进行赋值
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
myVector[i][j] = i * cols + j;
}
}
// 输出容器中的值
for (int i = 0; i < rows; i++) {
for (int j = 0; j < cols; j++) {
std::cout << myVector[i][j] << " ";
}
std::cout << std::endl;
}
return 0;
}
```
这段代码创建了一个3行4列的二维vector容器,并对容器进行了赋值。最后,通过嵌套的循环输出了容器中的值。你可以根据自己的需求修改行数和列数,并对容器中的元素进行操作。
阅读全文