JAVA集合类(1):数组介绍及常用 API

数组(Array):相同类型的数据的集合就叫数组。

如何定义数组:

1,type[] 变量名 = new type[数组中元素的个数];

2,type 变量名[] = new type[数组中元素的个数];

3,type[] 变量名 ={变量值}

示例:

 int[] a = new int[10];

 int a[] = new int[10];

 int[] a = [0,1,2,3,4,5];

建议使用第1种方式定义数组,第1种方式更面向对象。

数组中元素索引是从0开始,最大索引为数组的长度-1。

 

Java中每个数组都有一个lenght属性,表示数组的长度,length属性是public ,final ,int 的数组长度一旦确定,就不能改变大小。

int[] a = new int[10] ,其中a是一个引用,它指向了生成的数组对象的首地址,数组中每个元素都是int类型,其中只存放数据值本身。

 

对象数组中存放的是对象的引用,例如

Person[] person = new Person[10];
perons[0] = new Person("zhangsan",10,168);

 

数组常用API有:Arrays类中有很多相关的方法,如比较、排序等。

                     

   System类中还有一个数组复制的方法,如下:

public static void arraycopy(Object src,
                             int srcPos,
                             Object dest,
                             int destPos,
                             int length)

 

你可能感兴趣的:(java集合)