下面的文章提供了 Java 中 2D ArrayList 的概述。在java中数组列表可以是二维的,三维的等。数组列表的基本格式是一维的。除了一维之外,所有其他格式都被认为是 java 中声明数组的多维方式。根据预期添加的维数,需要添加数组的数量。此外,数组列表与数组非常接近。数组列表是动态项。这同样适用于二维数组列表。这些多维数组与无法预定义大小的动态数组非常相似。
广告 该类别中的热门课程 JAVA 掌握 - 专业化 | 78 课程系列 | 15 次模拟测试语法:
import java.util.*; ArrayList<data_type> arrayList = new ArrayList<> (); ArrayList<data_type> list_name = new ArrayList<>(int capacity);
上面给出的是java中创建数组列表的语法,需要以arraylist关键字作为第一项创建数组列表。数组列表构成第一项,然后需要声明数组列表的数据类型。数组列表数据类型后面需要跟列表名称。此处给出的列表值的名称将是预期的实际列表值。接下来,需要创建数组列表对象,并使用 new 作为数组列表创建该值。
数组列表的一些关键特征如下:
二维数组在 Java 中如何工作的示例图解表示,我们可以从图中注意到,每一列都用行级和列级索引值表示。第一个索引表示行值,而第二个索引表示列值。这以 a[0][0] 、 a[0][1] 等格式表示
下面给出的是提到的示例:
代码:
import java.util.*; public class Two_Dimensional_ArrayLists{ public static void main(String args[]) { // The arraylist of 2d format will be declared here ArrayList<ArrayList<Integer> > array_list = new ArrayList<ArrayList<Integer> >(); // The space for the 0th row can be allocated with the use of new keyword, this is done in this line. The 0th row also allows the store of 0 value as default . array_list.add(new ArrayList<Integer>()); // next the default value of 1 is changed to 13 here. array_list.get(1).add(0, 13); System.out.println("2D ArrayList… :"); System.out.println(array_list); } }
输出:
说明:
文章展示了创建二维数组列表的过程。本文介绍了创建数组列表的语法、数组列表的关键特征以及合适的示例。
以上是Java 中的 2D ArrayList的详细内容。更多信息请关注PHP中文网其他相关文章!