如何在Java中声明和初始化一个数组?

如何在Java中声明和初始化一个数组?

您可以使用数组声明或数组文本(但只有当您立即声明和影响variables时,数组文字不能用于重新分配数组)。

对于原始types:

int[] myIntArray = new int[3]; int[] myIntArray = {1,2,3}; int[] myIntArray = new int[]{1,2,3}; 

对于类,例如String ,它是相同的:

 String[] myStringArray = new String[3]; String[] myStringArray = {"a","b","c"}; String[] myStringArray = new String[]{"a","b","c"}; 

初始化的第三种方法在首先声明数组然后初始化它时很有用。 演员在这里是必要的。

 String[] myStringArray; myStringArray = new String[]{"a","b","c"}; 

有两种types的数组。

一维数组

默认值的语法:

 int[] num = new int[5]; 

或(不太优先)

 int num[] = new int[5]; 

给定值的语法(variables/字段初始化):

 int[] num = {1,2,3,4,5}; 

或(不太优先)

 int num[] = {1, 2, 3, 4, 5}; 

注意:为了方便int [] num是比较好的,因为它清楚地表明你在这里谈论数组。 否则没有区别。 一点也不。

multidimensional array

宣言

 int[][] num = new int[5][2]; 

要么

 int num[][] = new int[5][2]; 

要么

 int[] num[] = new int[5][2]; 

初始化

  num[0][0]=1; num[0][1]=2; num[1][0]=1; num[1][1]=2; num[2][0]=1; num[2][1]=2; num[3][0]=1; num[3][1]=2; num[4][0]=1; num[4][1]=2; 

要么

  int[][] num={ {1,2}, {1,2}, {1,2}, {1,2}, {1,2} }; 

粗糙arrays(或非矩形arrays)

  int[][] num = new int[5][]; num[0] = new int[1]; num[1] = new int[5]; num[2] = new int[2]; num[3] = new int[3]; 

所以我们在这里明确地定义列。
其他方式:

 int[][] num={ {1}, {1,2}, {1,2,3,4,5}, {1,2}, {1,2,3} }; 

访问:

 for (int i=0; i<(num.length); i++ ) { for (int j=0;j<num[i].length;j++) System.out.println(num[i][j]); } 

或者:

 for (int[] a : num) { for (int i : a) { System.out.println(i); } } 

参差不齐的数组是multidimensional array。
有关解释,请参阅官方java教程中的multidimensional array详细信息

 Type[] variableName = new Type[capacity]; Type[] variableName = {comma-delimited values}; Type variableName[] = new Type[capacity]; Type variableName[] = {comma-delimited values}; 

也是有效的,但是我更喜欢types之后的括号,因为它更容易看到variables的types实际上是一个数组。

有几种方法可以在Java中声明一个数组:

 float floatArray[]; //initialize later int[] integerArray = new int[10]; String[] array = new String[] {"a", "b"}; 

您可以在Sun教程网站和JavaDoc上find更多信息。

如果你了解每个部分,我觉得这很有帮助:

 Type[] name = new Type[5]; 

Type[]是名为variablestypes (“名称”称为标识符 )。 “Type”字面量是基本types,括号表示这是该基础的数组types。 数组types依次​​是它们自己的types,这允许您创buildmultidimensional array,例如Type[][]Type[][]的数组types))。 关键字new表示为新arrays分配内存。 括号之间的数字表示新数组的大小和分配多less内存。 例如,如果Java知道基本typesType需要32个字节,并且您想要一个大小为5的数组,则需要在内部分配32 * 5 = 160个字节。

您也可以使用已经存在的值创build数组,例如

 int[] name = {1, 2, 3, 4, 5}; 

这不仅创造了空间,而且填补了这些价值。 Java可以告诉基元是整数,并且有5个元素,所以数组的大小可以隐式确定。

以下显示数组的声明,但数组未被初始化:

  int[] myIntArray = new int[3]; 

下面显示了声明以及数组的初始化:

 int[] myIntArray = {1,2,3}; 

现在,下面还显示了声明以及数组的初始化:

 int[] myIntArray = new int[]{1,2,3}; 

但是这第三个显示了由引用variables“myIntArray”指向的匿名数组对象创build的属性,所以如果我们只写“new int [] {1,2,3};” 那么这就是如何创build匿名数组对象。

如果我们只写:

 int[] myIntArray; 

这不是数组的声明,但是下面的语句使上面的声明完整:

 myIntArray=new int[3]; 

另外,如果你想要更dynamic的东西有List接口。 这不会performance得很好,但更灵活:

 List<String> listOfString = new ArrayList<String>(); listOfString.add("foo"); listOfString.add("bar"); String value = listOfString.get(0); assertEquals( value, "foo" ); 

或者,

 // Either method works String arrayName[] = new String[10]; String[] arrayName = new String[10]; 

这声明了一个名为arrayName的大小为10的数组(您可以使用元素0到9)。

有两种主要的方法来创build一个数组:

这一个,为一个空arrays:

 int[] array = new int[n]; // "n" being the number of spaces to allocate in the array 

而这一个,初始化数组:

 int[] array = {1,2,3,4 ...}; 

您也可以制作multidimensional array,如下所示:

 int[][] array2d = new int[x][y]; // "x" and "y" specify the dimensions int[][] array2d = { {1,2,3 ...}, {4,5,6 ...} ...}; 

以原始typesint为例。 有几种方法来声明和int数组:

 int[] i = new int[capacity]; int[] i = new int[] {value1, value2, value3, etc}; int[] i = {value1, value2, value3, etc}; 

在所有这些,你可以使用int i[]而不是int[] i

有了reflection,你可以使用(Type[]) Array.newInstance(Type.class, capacity);

请注意,在方法参数中, ...表示variable arguments 。 基本上,任何数量的参数都可以。 用代码解释更容易:

 public static void varargs(int fixed1, String fixed2, int... varargs) {...} ... varargs(0, "", 100); // fixed1 = 0, fixed2 = "", varargs = {100} varargs(0, "", 100, 200); // fixed1 = 0, fixed2 = "", varargs = {100, 200}; 

在该方法内部, varargs被视为正常的int[]Type...只能在方法参数中使用,所以int... i = new int[] {}将不能编译。

请注意,将int[]传递给方法(或任何其他Type[] )时,不能使用第三种方法。 在语句int[] i = *{a, b, c, d, etc}* ,编译器假定{...}表示一个int[] 。 但那是因为你正在声明一个variables。 将数组传递给方法时,声明必须是new Type[capacity]new Type[] {...}

multidimensional array

multidimensional array很难处理。 基本上,二维数组是一个数组的数组。 int[][]表示一个int[]的数组。 关键是如果一个int[][]被声明为int[x][y] ,那么最大索引是i[x-1][y-1] 。 本质上,矩形int[3][5]是:

 [0, 0] [1, 0] [2, 0] [0, 1] [1, 1] [2, 1] [0, 2] [1, 2] [2, 2] [0, 3] [1, 3] [2, 3] [0, 4] [1, 4] [2, 4] 

如果你想使用reflection来创build数组,那么你可以这样做:

  int size = 3; int[] intArray = (int[]) Array.newInstance(int.class, size ); 

声明一个对象引用数组:

 class Animal {} class Horse extends Animal { public static void main(String[] args) { /* * Array of Animal can hold Animal and Horse (all subtypes of Animal allowed) */ Animal[] a1 = new Animal[10]; a1[0] = new Animal(); a1[1] = new Horse(); /* * Array of Animal can hold Animal and Horse and all subtype of Horse */ Animal[] a2 = new Horse[10]; a2[0] = new Animal(); a2[1] = new Horse(); /* * Array of Horse can hold only Horse and its subtype (if any) and not allowed supertype of Horse nor other subtype of Animal. */ Horse[] h1 = new Horse[10]; h1[0] = new Animal(); // Not allowed h1[1] = new Horse(); /* * This can not be declared. */ Horse[] h2 = new Animal[10]; // Not allowed } } 

数组是项目的顺序列表

 int item = value; int [] one_dimensional_array = { value, value, value, .., value }; int [][] two_dimensional_array = { { value, value, value, .. value }, { value, value, value, .. value }, .. .. .. .. { value, value, value, .. value } }; 

如果它是一个对象,那么它是一个概念

 Object item = new Object(); Object [] one_dimensional_array = { new Object(), new Object(), .. new Object() }; Object [][] two_dimensional_array = { { new Object(), new Object(), .. new Object() }, { new Object(), new Object(), .. new Object() }, .. .. .. { new Object(), new Object(), .. new Object() } }; 

在对象的情况下,您需要将其分配给null以使用new Type(..)初始化它们,像StringInteger这样的类是特殊情况,将按以下方式处理

 String [] a = { "hello", "world" }; // is equivalent to String [] a = { new String({'h','e','l','l','o'}), new String({'w','o','r','l','d'}) }; Integer [] b = { 1234, 5678 }; // is equivalent to Integer [] b = { new Integer(1234), new Integer(5678) }; 

一般来说,你可以创buildM维的数组

 int [][]..[] array = // ^ M times [] brackets {{..{ // ^ M times { bracket // this is array[0][0]..[0] // ^ M times [0] }}..} // ^ M times } bracket ; 

值得注意的是,创build一个M维数组在空间上是昂贵的。 因为当你在所有的维上创build一个M维的数组时,由于每个数组都有一个引用,所以数组的总大小大于N^M ,在M维上有一个(M-1)二维参考数组。 总大小如下

 Space = N^M + N^(M-1) + N^(M-2) + .. + N^0 // ^ ^ array reference // ^ actual data 

为了创build类对象的数组,你可以使用java.util.ArrayList 。 定义一个数组:

 public ArrayList<ClassName> arrayName; arrayName = new ArrayList<ClassName>(); 

为数组赋值:

 arrayName.add(new ClassName(class parameters go here); 

从数组中读取:

 ClassName variableName = arrayName.get(index); 

注意:

variableName是对数组的引用,意味着操作variableName将操作arrayName

for循环:

 //repeats for every value in the array for (ClassName variableName : arrayName){ } //Note that using this for loop prevents you from editing arrayName 

for循环,允许你编辑arrayName (传统的循环):

 for (int i = 0; i < arrayName.size(); i++){ //manipulate array here } 

另一种声明和初始化ArrayList的方法:

 private List<String> list = new ArrayList<String>(){{ add("e1"); add("e2"); }}; 

为Java 8及更高版本声明和初始化 创build简单的整数数组:

 int [] a1 = IntStream.range(1, 20).toArray(); System.out.println(Arrays.toString(a1)); // Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19] 

为[-50,50)和double(0,1E17)之间的整数创build随机数组:

 int [] a2 = new Random().ints(15, -50, 50).toArray(); double [] a3 = new Random().doubles(5, 0, 1e17).toArray(); 

两个序列的功率:

 double [] a4 = LongStream.range(0, 7).mapToDouble(i -> Math.pow(2, i)).toArray(); System.out.println(Arrays.toString(a4)); // output: [1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0] 

对于String [],你必须指定一个构造函数

 String [] a5 = Stream.generate(()->"I will not squeak chalk").limit(5).toArray(String[]::new); System.out.println(Arrays.toString(a5)); 

multidimensional array:

 String [][] a6 = List.of(new String[]{"a", "b", "c"} , new String[]{"d", "e", "f", "g"}) .toArray(new String[0][]); System.out.println(Arrays.deepToString(a6)); // output: [[a, b, c], [d, e, f, g]] 
 int[] SingleDimensionalArray = new int[2] int[][] MultiDimensionalArray = new int[3][4]