将锯齿状数组转换为多个一维数组
我想知道是否有办法将锯齿状数组(例如 [3][]
)转换为三个一维数组?
I wonder if there's a way to convert jagged array , say [3][]
into three one-dimensional arrays ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西吗?假设
jagged
定义为int[3][]
:jagged
第一维中的每个元素本身都是一个数组 - 有是不需要转换的。Something like this? Assuming
jagged
is defined asint[3][]
:Each element in the first dimension of
jagged
is an array in and of itself - there is no need to convert.实际上,它已经是三个一维数组了。 CLR 不会对交错数组进行特殊处理,它们只是数组的数组。您只需索引外部数组即可获取内部数组之一。
例子:
It already is three one-dimensional arrays, effectively. Jagged arrays are not treated specially by the CLR, they are simply arrays of arrays. You just index the outer array to get one of the inner arrays.
Example: