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

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

5448427 次浏览

您可以使用数组声明或数组文字(但只有当您立即声明并影响变量时,数组文字才能用于重新分配数组)。

对于原始类型:

int[] myIntArray = new int[3];int[] myIntArray = {1, 2, 3};int[] myIntArray = new int[]{1, 2, 3};
// Since Java 8. Doc of IntStream: https://docs.oracle.com/javase/8/docs/api/java/util/stream/IntStream.html
int [] myIntArray = IntStream.range(0, 100).toArray(); // From 0 to 99int [] myIntArray = IntStream.rangeClosed(0, 100).toArray(); // From 0 to 100int [] myIntArray = IntStream.of(12,25,36,85,28,96,47).toArray(); // The order is preserved.int [] myIntArray = IntStream.of(12,25,36,85,28,96,47).sorted().toArray(); // Sort

对于类,例如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"};

或者,

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

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

您可以通过多种方式在Java中声明数组:

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

您可以在Sun教程站点和javadoc中找到更多信息。

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


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

也有效,但我更喜欢类型后的括号,因为更容易看到变量的类型实际上是一个数组。

如果你理解每个部分,我发现这很有帮助:

Type[] name = new Type[5];

Type[]变量中的类型,称为name(“name”称为标识符)。文字“Type”是基本类型,括号表示这是该基本类型的数组类型。数组类型又是它们自己的类型,这允许您制作像Type[][](Type[]的数组类型)这样的多维数组。关键字new表示为新数组分配内存。括号之间的数字表示新数组的大小以及要分配多少内存。例如,如果Java知道基本类型Type需要32个字节,而您想要一个大小为5的数组,则需要在内部分配32*5=160个字节。

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

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

这不仅创建了空白空间,而且用这些值填充它。Java可以看出原语是整数,并且有5个,因此可以隐式确定数组的大小。

此外,如果您想要更动态的东西,可以使用List界面。这不会很好地执行,但更灵活:

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

下面显示了数组的声明,但数组未初始化:

 int[] myIntArray = new int[3];

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

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

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

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

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

如果我们只写:

int[] myIntArray;

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

myIntArray=new int[3];

有两种类型的数组。

一维数组

默认值的语法:

int[] num = new int[5];

或(不太优选)

int num[] = new int[5];

具有给定值的语法(变量/字段初始化):

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

或(不太优选)

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

注意:为了方便起见,int[]num更可取,因为它清楚地告诉你这里谈论的是数组。否则没有区别。一点也不。

多维数组

宣言

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} };

锯齿数组(或非矩形数组)

 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);}}

参差不齐的数组是多维数组。
有关解释,请参阅官方java教程

中的多维数组详细信息

如果你想使用反射创建数组,那么你可以这样做:

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

以基本类型int为例。声明和int数组有几种方法:

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

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

使用反射,您可以使用(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[]。但那是因为您正在声明一个变量。当将数组传递给方法时,声明必须是new Type[capacity]new Type[] {...}

多维数组

多维数组更难处理。本质上,2D数组是数组的数组。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]

声明一个对象引用数组:

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 notallowed supertype of Horse nor other subtype of Animal.*/Horse[] h1 = new Horse[10];h1[0] = new Animal(); // Not allowedh1[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 toString [] a = { new String({'h','e','l','l','o'}), new String({'w','o','r','l','d'}) };
Integer [] b = { 1234, 5678 };// is equivalent toInteger [] b = { new Integer(1234), new Integer(5678) };

一般来说,您可以创建M维的数组

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

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

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

创建数组的主要方法有两种:

这个,对于一个空数组:

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

这是一个初始化数组:

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

您还可以创建多维数组,如下所示:

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

要创建类Object的数组,您可以使用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

对于循环:

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

允许您编辑arrayName(常规for循环)的for循环:

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

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

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

声明并初始化Java8及更高版本。创建一个简单的整数数组:

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]和双精度[0,1E17]之间的整数创建一个随机数组:

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));

多维数组:

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]]

9Java

使用不同的#0#1方法:

int[] a = IntStream.iterate(10, x -> x <= 100, x -> x + 10).toArray();
Out: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]

int[] b = IntStream.iterate(0, x -> x + 1).takeWhile(x -> x < 10).toArray();
Out: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

Java10

使用局部变量类型推断

var letters = new String[]{"A", "B", "C"};

在Java8中,你可以使用这样的东西。

String[] strs = IntStream.range(0, 15)  // 15 is the size.mapToObj(i -> Integer.toString(i)).toArray(String[]::new);

使用局部变量类型推断,您只需指定一次类型:

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

int[] values = { 1, 2, 3 }

如果“数组”是指使用java.util.Arrays,则可以使用:

List<String> number = Arrays.asList("1", "2", "3");
// Out: ["1", "2", "3"]

这是一个漂亮的简单和简单。

这里有很多答案。我正在添加一些创建数组的棘手方法(从考试的角度来看,知道这一点很好)

  1. 声明并定义一个数组

    int intArray[] = new int[3];

    这将创建一个长度为3的数组。由于它包含原始类型int,因此默认情况下所有值都设置为0。例如,

    intArray[2]; // Will return 0
  2. Using box brackets [] before the variable name

    int[] intArray = new int[3];intArray[0] = 1;  // Array content is now {1, 0, 0}
  3. Initialise and provide data to the array

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

    这一次不需要在框括号中提及大小。甚至是一个简单的变体:

    int[] intArray = {1, 2, 3, 4};
  4. An array of length 0

    int[] intArray = new int[0];int length = intArray.length; // Will return length 0

    类似于多维数组

    int intArray[][] = new int[2][3];// This will create an array of length 2 and//each element contains another array of length 3.// { {0,0,0},{0,0,0} }int lenght1 = intArray.length; // Will return 2int length2 = intArray[0].length; // Will return 3

Using box brackets before the variable:

    int[][] intArray = new int[2][3];

如果你在最后放一个盒子括号,那绝对没问题:

    int[] intArray [] = new int[2][4];int[] intArray[][] = new int[2][3][4]

一些例子

    int [] intArray [] = new int[][] \{\{1,2,3},{4,5,6}};int [] intArray1 [] = new int[][] {new int[] {1,2,3}, new int [] {4,5,6}};int [] intArray2 [] = new int[][] {new int[] {1,2,3},{4,5,6}}// All the 3 arrays assignments are valid// Array looks like \{\{1,2,3},{4,5,6}}

每个内部元素的大小不一定相同。

    int [][] intArray = new int[2][];intArray[0] = {1,2,3};intArray[1] = {4,5};//array looks like \{\{1,2,3},{4,5}}
int[][] intArray = new int[][2] ; // This won't compile. Keep this in mind.

你必须确保如果你使用上面的语法,你必须指定框括号中的值的前进方向。否则它将无法编译。一些例子:

    int [][][] intArray = new int[1][][];int [][][] intArray = new int[1][2][];int [][][] intArray = new int[1][2][3];

另一个重要特征是协变

    Number[] numArray = {1,2,3,4};   // java.lang.NumbernumArray[0] = new Float(1.5f);   // java.lang.FloatnumArray[1] = new Integer(1);    // java.lang.Integer// You can store a subclass object in an array that is declared// to be of the type of its superclass.// Here 'Number' is the superclass for both Float and Integer.
Number num[] = new Float[5]; // This is also valid

重要提示:对于引用的类型,存储在数组中的默认值为null。

声明数组:int[] arr;

初始化数组:int[] arr = new int[10]; 10表示数组中允许的元素数

声明多维数组:int[][] arr;

初始化多维数组:int[][] arr = new int[10][17]; 10行和17列以及170个元素,因为10乘以17等于170。

初始化数组意味着指定它的大小。

声明和初始化数组非常容易。例如,您想在数组中保存五个整数元素,它们是1、2、3、4和5。您可以通过以下方式执行此操作:

a)

int[] a = new int[5];

b)

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

所以基本模式是通过方法a)进行初始化和声明:

datatype[] arrayname = new datatype[requiredarraysize];

datatype应该是小写。

所以基本模式是初始化,方法a的声明是:

如果是字符串数组:

String[] a = {"as", "asd", "ssd"};

如果它是一个字符数组:

char[] a = {'a', 's', 'w'};

对于浮点双精度,数组的格式将与整数相同。

例如:

double[] a = {1.2, 1.3, 12.3};

但是当您通过“方法a”声明和初始化数组时,您将不得不手动或通过循环或其他方式输入值。

但是当你使用“方法b”时,你不必手动输入值。

数组可以包含基元数据类型以及类的对象,具体取决于数组的定义。对于基元数据类型,实际值存储在连续的内存位置。对于类的对象,实际对象存储在堆段中。


一维数组:

一维数组声明的一般形式是

type var-name[];ORtype[] var-name;

在Java中实例化数组

var-name = new type [size];

例如,

int intArray[];  // Declaring an arrayintArray = new int[20];  // Allocating memory to the array
// The below line is equal to line1 + line2int[] intArray = new int[20]; // Combining both statements in oneint[] intArray = new int[]{ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// Accessing the elements of the specified arrayfor (int i = 0; i < intArray.length; i++)System.out.println("Element at index " + i + ": "+ intArray[i]);

参考:数组在Java

数组有两种基本类型。

静态数组:固定大小的数组(其大小应在开始时声明,以后不能更改)

动态数组:对此不考虑大小限制。(纯动态数组在Java中不存在。相反,最鼓励List。)

要声明整数、字符串、浮点数等的静态数组,请使用以下声明和初始化语句。

int[] intArray = new int[10];String[] intArray = new int[10];float[] intArray = new int[10];
// Here you have 10 index starting from 0 to 9

要使用动态特性,您必须使用List…列表是纯动态阵列,不需要在开始时声明大小。下面是在Java中声明列表的正确方法-

ArrayList<String> myArray = new ArrayList<String>();myArray.add("Value 1: something");myArray.add("Value 2: something more");

int[] x = new int[enter the size of array here];

示例:

int[] x = new int[10];              

int[] x = {enter the elements of array here];

示例:

int[] x = {10, 65, 40, 5, 48, 31};

另一个完整的例子是一个电影类:

public class A {
public static void main(String[] args) {
class Movie {
String movieName;String genre;String movieType;String year;String ageRating;String rating;
public Movie(String [] str){this.movieName = str[0];this.genre = str[1];this.movieType = str[2];this.year = str[3];this.ageRating = str[4];this.rating = str[5];}}
String [] movieDetailArr = {"Inception", "Thriller", "MovieType", "2010", "13+", "10/10"};
Movie mv = new Movie(movieDetailArr);
System.out.println("Movie Name: "+ mv.movieName);System.out.println("Movie genre: "+ mv.genre);System.out.println("Movie type: "+ mv.movieType);System.out.println("Movie year: "+ mv.year);System.out.println("Movie age : "+ mv.ageRating);System.out.println("Movie  rating: "+ mv.rating);}}
package com.examplehub.basics;
import java.util.Arrays;
public class Array {
public static void main(String[] args) {int[] numbers = {1, 2, 3, 4, 5};
/** numbers[0] = 1* numbers[1] = 2* numbers[2] = 3* numbers[3] = 4* numbers[4] = 5*/System.out.println("numbers[0] = " + numbers[0]);System.out.println("numbers[1] = " + numbers[1]);System.out.println("numbers[2] = " + numbers[2]);System.out.println("numbers[3] = " + numbers[3]);System.out.println("numbers[4] = " + numbers[4]);
/** Array index is out of bounds*///System.out.println(numbers[-1]);//System.out.println(numbers[5]);

/** numbers[0] = 1* numbers[1] = 2* numbers[2] = 3* numbers[3] = 4* numbers[4] = 5*/for (int i = 0; i < 5; i++) {System.out.println("numbers[" + i + "] = " + numbers[i]);}
/** Length of numbers = 5*/System.out.println("length of numbers = " + numbers.length);
/** numbers[0] = 1* numbers[1] = 2* numbers[2] = 3* numbers[3] = 4* numbers[4] = 5*/for (int i = 0; i < numbers.length; i++) {System.out.println("numbers[" + i + "] = " + numbers[i]);}
/** numbers[4] = 5* numbers[3] = 4* numbers[2] = 3* numbers[1] = 2* numbers[0] = 1*/for (int i = numbers.length - 1; i >= 0; i--) {System.out.println("numbers[" + i + "] = " + numbers[i]);}
/** 12345*/for (int number : numbers) {System.out.print(number);}System.out.println();
/** [1, 2, 3, 4, 5]*/System.out.println(Arrays.toString(numbers));


String[] company = {"Google", "Facebook", "Amazon", "Microsoft"};
/** company[0] = Google* company[1] = Facebook* company[2] = Amazon* company[3] = Microsoft*/for (int i = 0; i < company.length; i++) {System.out.println("company[" + i + "] = " + company[i]);}
/** Google* Facebook* Amazon* Microsoft*/for (String c : company) {System.out.println(c);}
/** [Google, Facebook, Amazon, Microsoft]*/System.out.println(Arrays.toString(company));
int[][] twoDimensionalNumbers = \{\{1, 2, 3},{4, 5, 6, 7},{8, 9},{10, 11, 12, 13, 14, 15}};
/** total rows  = 4*/System.out.println("total rows  = " + twoDimensionalNumbers.length);
/** row 0 length = 3* row 1 length = 4* row 2 length = 2* row 3 length = 6*/for (int i = 0; i < twoDimensionalNumbers.length; i++) {System.out.println("row " + i + " length = " + twoDimensionalNumbers[i].length);}
/** row 0 = 1 2 3* row 1 = 4 5 6 7* row 2 = 8 9* row 3 = 10 11 12 13 14 15*/for (int i = 0; i < twoDimensionalNumbers.length; i++) {System.out.print("row " + i + " = ");for (int j = 0; j < twoDimensionalNumbers[i].length; j++) {System.out.print(twoDimensionalNumbers[i][j] + " ");}System.out.println();}
/** row 0 = [1, 2, 3]* row 1 = [4, 5, 6, 7]* row 2 = [8, 9]* row 3 = [10, 11, 12, 13, 14, 15]*/for (int i = 0; i < twoDimensionalNumbers.length; i++) {System.out.println("row " + i + " = " + Arrays.toString(twoDimensionalNumbers[i]));}
/** 1 2 3* 4 5 6 7* 8 9* 10 11 12 13 14 15*/for (int[] ints : twoDimensionalNumbers) {for (int num : ints) {System.out.print(num + " ");}System.out.println();}
/** [1, 2, 3]* [4, 5, 6, 7]* [8, 9]* [10, 11, 12, 13, 14, 15]*/for (int[] ints : twoDimensionalNumbers) {System.out.println(Arrays.toString(ints));}

int length = 5;int[] array = new int[length];for (int i = 0; i < 5; i++) {array[i] = i + 1;}
/** [1, 2, 3, 4, 5]*/System.out.println(Arrays.toString(array));
}}

来自example plehub/java的源代码

有时我用它来初始化String数组:

private static final String[] PROPS = "lastStart,storetime,tstore".split(",");

它以更昂贵的初始化为代价减少了引用混乱。

宣言

一维数组

int[] nums1; // best practiceint []nums2;int nums3[];

多维数组

int[][] nums1; // best practiceint [][]nums2;int[] []nums3;int[] nums4[];int nums5[][];

声明和初始化

一维数组

使用默认值

int[] nums = new int[3]; // [0, 0, 0]
Object[] objects = new Object[3]; // [null, null, null]

使用数组文字

int[] nums1 = {1, 2, 3};int[] nums2 = new int[]{1, 2, 3};
Object[] objects1 = {new Object(), new Object(), new Object()};Object[] objects2 = new Object[]{new Object(), new Object(), new Object()};

循环for

int[] nums = new int[3];for (int i = 0; i < nums.length; i++) {nums[i] = i; // can contain any YOUR filling strategy}
Object[] objects = new Object[3];for (int i = 0; i < objects.length; i++) {objects[i] = new Object(); // can contain any YOUR filling strategy}

循环forRandom

int[] nums = new int[10];Random random = new Random();for (int i = 0; i < nums.length; i++) {nums[i] = random.nextInt(10); // random int from 0 to 9}

Stream(自Java8)

int[] nums1 = IntStream.range(0, 3).toArray(); // [0, 1, 2]int[] nums2 = IntStream.rangeClosed(0, 3).toArray(); // [0, 1, 2, 3]int[] nums3 = IntStream.of(10, 11, 12, 13).toArray(); // [10, 11, 12, 13]int[] nums4 = IntStream.of(12, 11, 13, 10).sorted().toArray(); // [10, 11, 12, 13]int[] nums5 = IntStream.iterate(0, x -> x <= 3, x -> x + 1).toArray(); // [0, 1, 2, 3]int[] nums6 = IntStream.iterate(0, x -> x + 1).takeWhile(x -> x < 3).toArray(); // [0, 1, 2]
int size = 3;Object[] objects1 = IntStream.range(0, size).mapToObj(i -> new Object()) // can contain any YOUR filling strategy.toArray(Object[]::new);
Object[] objects2 = Stream.generate(() -> new Object()) // can contain any YOUR filling strategy.limit(size).toArray(Object[]::new);

RandomStream(自Java8)

int size = 3;int randomNumberOrigin = -10;int randomNumberBound = 10int[] nums = new Random().ints(size, randomNumberOrigin, randomNumberBound).toArray();

多维数组

带默认值

int[][] nums = new int[3][3]; // [[0, 0, 0], [0, 0, 0], [0, 0, 0]]
Object[][] objects = new Object[3][3]; // [[null, null, null], [null, null, null], [null, null, null]]

使用数组文字

int[][] nums1 = \{\{1, 2, 3},{4, 5, 6},{7, 8, 9}};int[][] nums2 = new int[][]\{\{1, 2, 3},{4, 5, 6},{7, 8, 9}};
Object[][] objects1 = \{\{new Object(), new Object(), new Object()},{new Object(), new Object(), new Object()},{new Object(), new Object(), new Object()}};Object[][] objects2 = new Object[][]\{\{new Object(), new Object(), new Object()},{new Object(), new Object(), new Object()},{new Object(), new Object(), new Object()}};

循环for

int[][] nums = new int[3][3];for (int i = 0; i < nums.length; i++) {for (int j = 0; j < nums[i].length; i++) {nums[i][j] = i + j; // can contain any YOUR filling strategy}}
Object[][] objects = new Object[3][3];for (int i = 0; i < objects.length; i++) {for (int j = 0; j < nums[i].length; i++) {objects[i][j] = new Object(); // can contain any YOUR filling strategy}}