我想在行中存储一个100个int元素的数组,即1行100个int数据类型。每个元素都包含一个100个对象的数组。如何在java或android中做到这一点。
最佳答案
使用一个集合,一个“列表列表”:
List<List<YourType>> matrix2D = new ArrayList<List<YourType>>();
这种结构可以轻松地存储具有200行和100列的表,其中每个元素的类型均为
YourType
。否则-如果您的大小是固定的,并且只想存储
YourType
值,则不需要泛型:int rows = 200;
int columns = 200;
YourType[][] matrix2D = new YourType[rows][columns];