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

时间:2009-07-29 14:22:27

标签: java arrays declare

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

29 个答案:

答案 0 :(得分:2464)

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

对于原始类型:

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

答案 1 :(得分:255)

有两种类型的阵列。

一维数组

默认值的语法:

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

粗糙的数组是多维数组 有关说明,请参阅the official java tutorials

处的多维数组详细信息

答案 2 :(得分:121)

Type[] variableName = new Type[capacity];

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



Type variableName[] = new Type[capacity]; 

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

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

答案 3 :(得分:35)

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

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

您可以在Sun tutorial网站和JavaDoc

中找到更多信息

答案 4 :(得分:28)

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

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

答案 5 :(得分:27)

如果您了解每个部分,我会发现它很有用:

Type[] name = new Type[5];

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

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

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

不仅会创建空白空间,还会使用这些值填充空白空间。 Java可以告诉基元是整数,并且它们中有5个,因此可以隐式确定数组的大小。

答案 6 :(得分:25)

可替换地,

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

声明一个名为arrayName的数组大小为10(你要使用0到9的元素)。

答案 7 :(得分:24)

此外,如果您想要更动态的东西,还有List界面。这不会表现得那么好,但更灵活:

List<String> listOfString = new ArrayList<String>();

listOfString.add("foo");
listOfString.add("bar");

String value = listOfString.get(0);
assertEquals( value, "foo" );

答案 8 :(得分:14)

制作数组有两种主要方法:

这个,对于一个空数组:

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 dimensions
int[][] array2d = { {1,2,3 ...}, {4,5,6 ...} ...};

答案 9 :(得分:10)

以原始类型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]

答案 10 :(得分:9)

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

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

答案 11 :(得分:8)

声明一个对象引用数组:

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

答案 12 :(得分:8)

在Java 9中

使用不同的IntStream.iterateIntStream.takeWhile方法:

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]

在Java 10中

使用Local Variable Type Inference

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

答案 13 :(得分:7)

数组是项目的顺序列表

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

通常,您可以创建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

答案 14 :(得分:6)

要创建类对象的数组,可以使用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 loops:

//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循环):

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

答案 15 :(得分:6)

在Java 8中,您可以这样使用。

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

答案 16 :(得分:4)

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

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

答案 17 :(得分:4)

数组有两种基本类型。

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

动态数组:对此没有大小限制。 (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

要使用动态功能,必须使用列表... 列表是纯动态数组,无需在开始时声明大小。 贝娄是在JAVA中声明列表的正确方法>

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

答案 18 :(得分:3)

您也可以使用java.util.Arrays来做到这一点:

List<String> number = Arrays.asList("1", "2", "3");

Out: ["1", "2", "3"]

这很简单简单。 我没有在其他答案中看到它,所以我认为可以添加它。

答案 19 :(得分:2)

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

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

答案 20 :(得分:1)

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

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

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

答案 21 :(得分:1)

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


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

type var-name[];
OR
type[] var-name;

使用Java实例化数组

var-name = new type [size];

例如

    int intArray[];    //declaring array
    intArray = new int[20];  // allocating memory to array
    // the below line is equals to line1 + line2
    int[] intArray = new int[20]; // combining both statements in one
     int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 }; 
    // accessing the elements of the specified array
    for (int i = 0; i < intArray.length; i++)
    System.out.println("Element at index " + i + " : "+ intArray[i]);

参考:https://www.geeksforgeeks.org/arrays-in-java/

答案 22 :(得分:1)

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

答案 23 :(得分:1)

电影类?

的另一个完整示例
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);


            }

        } 

答案 24 :(得分:0)

这里有很多答案。添加一些技巧来创建数组(从考试的角度出发,很高兴知道这一点)

  1. 声明并定义一个数组

    free()

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

int intArray[] = new int[3];
  1. 在变量名称前使用方括号[]

        intArray[2]; // will return 0
    
  2. 初始化并提供数据到数组

    int[] intArray = new int[3];
    intArray[0] = 1;  // array content now {1,0,0}
    

    这次无需在方括号中提及尺寸。甚至是这个的简单变体

    int[] intArray = new int[]{1,2,3};
    
  3. 长度为0的数组

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

    类似于多维数组

    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 2
    int length2 = intArray[0].length; // will return 3
    

    如果在末尾放一个方括号,那绝对好

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

IMP:对于引用类型,存储到数组的默认值为null。

答案 25 :(得分:0)

声明数组:int[] arr;

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

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

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

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

答案 26 :(得分:0)

声明和初始化数组非常容易。 例如,您要在数组中保存五个整数元素,它们分别是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”进行操作时,则不必手动输入值。

答案 27 :(得分:0)

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

    }
}

source from examplehub/java

答案 28 :(得分:-6)

int[] SingleDimensionalArray = new int[2]

int[][] MultiDimensionalArray = new int[3][4]