java.lang.索引越界异常:索引0超出长度0的界限

xqkwcwgp  于 2023-01-11  发布在  Java
关注(0)|答案(2)|浏览(293)
import java.util.*;
 class stockbuysell{
    //Function to find the days of buying and selling stock for max profit.
    public static void main(String []args){
        int A[] = {100,180,260,310,40,535,695};
         ArrayList<ArrayList<Integer>> al = stockBuySell(A,7);
    }
    static ArrayList<ArrayList<Integer> > stockBuySell(int A[], int n) {
        // code here
       // buy = 0;
        //sell = 1
        ArrayList<ArrayList<Integer>> al = new ArrayList<ArrayList<Integer>>();
        int flag = 0;
        int idx = 0;
        for(int i=1;i<n;i++){
            if(i==n-1 && flag==1){
                al.get(idx).add(i);
                flag = 0;
            }
            if(flag == 0 && A[i]>A[i-1]){//
                al.add(new ArrayList<Integer>());
                al.get(idx).add(i-1);
                flag = 1;
            }
            if(flag == 1 && A[i]<A[i-1]){//
                al.get(idx).add(i-1);
                flag = 0;
                idx++;
            }
        }
        for(int i=0;i<al.size();i++){
            System.out.println(al.get(i).get(0)+" "+al.get(i).get(1));
        }
        return al;
    }
}

我不知道我在哪里得到一个错误。它编译成功,而运行它显示:

Exception in thread "main" java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
        at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
        at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
        at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266)
        at java.base/java.util.Objects.checkIndex(Objects.java:359)
        at java.base/java.util.ArrayList.get(ArrayList.java:427)
        at stockbuysell.stockBuySell(stockBuySell.java:32)
        at stockbuysell.main(stockBuySell.java:6)
2ekbmq32

2ekbmq321#

你的数组列表有一些空列表,如果你访问它,它会抛出IndexOutOfBoundsException。

在访问索引之前,始终检查该索引中是否存在数据。

khbbv19g

khbbv19g2#

如果运行此代码
系统输出打印输入(数组列表名称. get(数组列表名称. size()-1));
编译成功,运行时显示:线程"main"中出现异常java. lang. IndexOutOfBoundsException:索引0超出长度0的界限
当数组列表是空的,你用这种方式搜索值,你会得到错误。但是如果你检查你的数组列表是空的。当数组列表中至少有一个元素,运行代码,你会得到你的值-没有编译器错误。

public static void functionNameHere(){
    if (!arrayListName.isEmpty() ){
            //execute code
            System.out.println(arrayListName.get(arrayListName.size()-1));
            }       
}

相关问题