Аргументы командной строки вызывают исключение в "основном" потоке

import java.util.*;

public class bubblesort {
        public int input;
        public int c;
        public int d; 
        public int swap;
        public int[] arr= new int[input];
        Random rand = new Random();
        Scanner in = new Scanner(System.in);

    public static void main(String[] args) { 
        bubblesort b = new bubblesort();
        Scanner in = new Scanner(System.in);
        System.out.println("Ascending(1),Descending(2),Random(3)");
        int arrayInput= in.nextInt();

        if (arrayInput == 1) {
            b.ascending(args);
            }
        else if (arrayInput == 2) {
            b.descending(args);
            }   
        else if (arrayInput == 3) {
            b.random(args);
            }           
    }


    public void ascending(String[] args){   
        this.input = Integer.parseInt(args[0]);

        for (c = 0; c < input; c++){ 
          arr[c] = rand.nextInt(Integer.MAX_VALUE);
          }

        for (c = 0; c < ( input - 1 ); c++) {
            for (d = 0; d < input - c - 1; d++) {
             if (arr[d] > arr[d+1]){
                  swap       = arr[d];
                  arr[d]   = arr[d+1];
                  arr[d+1] = swap;
                }
            }
        } 
        for (c = 0; c < input; c++) 
        System.out.println(arr[c]);

        long startTime = System.nanoTime();
        for (c = 0; c < input - 1; c++){
            for (d =0; d < input - c -1 ; d++){
                if (arr[d] > arr[d+1]){
                     swap = arr[d];
                     arr[d] = arr[d+1];
                     arr[d+1] = swap;
                     }
                }
            }
        long endTime = System.nanoTime();
        long estimatedTime = endTime - startTime;
        System.out.println("Sorted list of numbers");
        for (c = 0; c < input; c++) 
        System.out.println(arr[c]);
        System.out.println("The time it takes to sort an descending array into an ascending array is "+estimatedTime+" nano seconds");
        }
    }

Поэтому, когда я компилирую этот файл (это не весь мой файл), он компилируется, и только когда я пытаюсь запустить его, он выдает исключение:

Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 0
    at bubblesort.ascending(bubblesort.java:61)
    at bubblesort.main(bubblesort.java:23)

Я думаю, проблема в том, что длина массива, или я назвал его "входным", не меняется на целое число аргумента командной строки, поэтому входные данные остаются на нуле. Если это так, как я могу решить эту проблему?

2 ответа

Решение

Вы не можете инициализировать arr прежде чем анализировать пользовательский ввод. Заявление public int[] arr= new int[input]; В результате получается массив размером 0, поэтому любой пользователь, обращающийся к нему, выдаст исключение. Попробуйте инициализировать массив внутри основного, после анализа длины массива.

Вверху, где у вас есть переменные.

public int input; //NOT INITIALIZED
public int[] arr= new int[input];

Ваш ввод не инициализируется до того, как вы попытаетесь создать массив. поэтому он не имеет размера.

Попробуйте инициализировать его с помощью пользовательского ввода внутри главной функции, а затем создайте массив.

int arrayInput= in.nextInt();
arr = new int[arrayInput];
Другие вопросы по тегам