5

So the error message is this:

Exception in thread "main" java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
at java.util.ArrayList.rangeCheck(Unknown Source)
at java.util.ArrayList.get(Unknown Source)
at FcfsScheduler.sortArrival(FcfsScheduler.java:77)
at FcfsScheduler.computeSchedule(FcfsScheduler.java:30)
at ScheduleDisks.main(ScheduleDisks.java:33)

with my code as

public void sortArrival(List<Request> r)
{
    int pointer = 0;
    int sProof = 0;
    while(true)
    {
        if(r.get(pointer).getArrivalTime()<r.get(pointer+1).getArrivalTime())
        {
            Request r1 = r.get(pointer);
            Request r2 = r.get(pointer+1);
            r.set(pointer, r2);
            r.set(pointer+1, r1);
        }
        else
        {
            sProof++;
        }
        ++pointer;
        if(pointer>r.size()-2)
        {
            pointer=0;
            sProof=0;
        }
        if(sProof>=r.size()-2)
        {
            break;
        }
    }
}

The error is at

if(r.get(pointer).getArrivalTime()<r.get(pointer+1).getArrivalTime())

but I think the array index is checked ok with the code after the increment of pointer. Is it an array out of bounds exception or something else? Normally, the error is ArrayIndexOutOfBoundsException when it is the array. What seems to be the problem here?

6
  • 7
    This error is showing because your ArrayList is empty.!! Commented Mar 17, 2013 at 15:41
  • Try debugging your code using debugger, you can get exactly where and how error is occurring. Commented Mar 17, 2013 at 15:41
  • you should check pointer+1 against the size of r in your while decleration to avoid this error. also, checking that r is not null and not empty may be a good idea. Commented Mar 17, 2013 at 15:45
  • List you have input is empty Commented Mar 17, 2013 at 16:00
  • 1
    Possible duplicate of What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? Commented Jun 12, 2019 at 15:47

3 Answers 3

6

java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

ArrayList is empty. It does not contain any element.

Index: 0, Size: 0.

You are trying to access it.So you are getting IndexOutOfBoundsException.

if(r.size() == 0) && r.size() < pointer + 1)   //If ArrayList size is zero then simply return from method.
  return;
Sign up to request clarification or add additional context in comments.

Comments

5

You are passing in an empty array. You should do some validation on the inputs

if (r == null || r.size()==0){
   throw new RuntimeException("Invalid ArrayList");
}

Comments

0

Your array size is 0, you should initialize it correctly in order to iterate it.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.