2D array vs array of arrays(二维数组与数组数组)
问题描述
二维数组和数组数组有什么区别?
What is the difference between a 2D array and an array of arrays?
我已阅读评论,例如 @Dave's,这似乎区分了两者.
I have read comments, such as @Dave's, that seem to differentiate between the two.
如果他使用二维数组或指向数组的类型,而不是数组的数组,这会中断.– 戴夫
This breaks if he's using 2d arrays, or pointer-to-array types, rather than an array of arrays. – Dave
我一直认为两者都指的是:
I always thought that both referred to:
int arr_arr[][];
<小时>
@FutureReader,您可能希望看到 如何在 C++ 中使用数组?
@FutureReader, you may wish to see How do I use arrays in C++?
推荐答案
二维数组是定义为数组的数组.
A 2 dimensional array is by definition an array of arrays.
Dave 所说的是,在这种情况下,像这样的二维数组定义之间存在不同的语义:
What Dave was saying is that in that context, there are different semantics between the definition of a 2D array like this:
int x[][];
这个:
int *x[];
或者这个:
int **x;
这篇关于二维数组与数组数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:二维数组与数组数组


- 近似搜索的工作原理 2021-01-01
- 从python回调到c++的选项 2022-11-16
- 静态初始化顺序失败 2022-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- Stroustrup 的 Simple_window.h 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- C++ 协变模板 2021-01-01