4. Data StrUCture
4.1 Array
4.1.1 基本概念
数组在Java中是对象,因此使用它之前需要实例化。数组中的元素可以是基本元素,也可以是对象,但是同一数组中元素的类型必须是相同的。
数组中存放的对象不是对象本身,而是对象的引用。
4.1.2 数组申明与实例化
(1) String difWords[];Point hits[];
(2) String[] difwords[]; Point[] hits; 常用于方法的返回类型;
(3) String[] names = new String[10]; int[] temps = new int[10];
(4) String[] names = {"jalapeno", "anaheim", "serrano"}
(5) int coords[][] = new int[12][12];
4.1.3 数组的属性与方法
数组是对象,因些它有属性与方法,如length属性等。
<...[ 查看全文 ]