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;
这篇关于二维数组与数组数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:二维数组与数组数组
基础教程推荐
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01