Declaring a 2D vector(声明一个二维向量)
问题描述
在某些情况下,只有以下行有效.为什么会这样?
In some cases only the below line works.Why so?
vector< vector<int>> a(M,N);
这适用于任何情况.
vector< vector<int>> a(M, vector<int> (N));
有什么区别?
推荐答案
std::vector
有一个填充构造函数,它创建一个包含 n 个元素的向量并填充指定的值.a
具有 std::vector
类型,这意味着它是一个向量的向量.因此,填充向量的默认值是向量本身,而不是 int
.因此,第二个选项是正确的.
std::vector
has a fill constructor which creates a vector of n elements and fills with the value specified. a
has the type std::vector<std::vector<int>>
which means that it is a vector of a vector. Hence your default value to fill the vector is a vector itself, not an int
. Therefore the second options is the correct one.
std::vector
这将创建一个 rows * cols 二维数组,其中每个元素都是 0.默认值是 std::vector
这意味着每一行都有一个向量,其中 cols
元素个数,每个元素为 0.
This creates a rows * cols 2D array where each element is 0. The default value is std::vector<int>(cols, 0)
which means each row has a vector which has cols
number of element, each being 0.
这篇关于声明一个二维向量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:声明一个二维向量
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07