How to initialize an array in Java?

后端 未结 10 2265
天命终不由人
天命终不由人 2020-11-22 00:23

I am initializing an array like this:

public class Array {

    int data[] = new int[10]; 
    /** Creates a new instance of Array */
    public Array() {
           


        
10条回答
  •  情书的邮戳
    2020-11-22 01:02

    you are trying to set the 10th element of the array to the array try

    data = new int[] {10,20,30,40,50,60,71,80,90,91};
    

    FTFY

提交回复
热议问题