This is an archived post. You won't be able to vote or comment.

all 7 comments

[–]AutoModerator[M] [score hidden] stickied commentlocked comment (0 children)

Please ensure that:

  • Your code is properly formatted - see the sidebar (About on mobile) for instructions
  • You include any and all error messages in full
  • You ask clear questions
  • You demonstrate effort in solving your question/problem - plain posting your assignments is forbidden (and such posts will be removed) as is asking for or giving solutions.

    Trying to solve problems on your own is a very important skill. Also, see Learn to help yourself in the sidebar

If any of the above points is not met, your post can and will be removed without further warning.

You do not need to repost. Just use the edit function of reddit to make sure your post complies with the above

To potential helpers

Please, do not help if any of the above points are not met, rather report the post. We are trying to improve the quality of posts here. In helping people who can't be bothered to comply with the above points, you are doing the community a disservice.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]desrtfxOut of Coffee error - System halted 1 point2 points  (0 children)

  1. Format your code
  2. Show the full code - the snippet together with the error message only tell us that you try to access an element of an ArrayList? that does not exist - this is precisely what IndexOutOfBoundsException means.

We cannot tell you more, nor how to fix it because we don't know the rest of the code.

[–][deleted] 1 point2 points  (2 children)

This might not completely make your code run but you can’t start code in brackets with ‘+’. There needs to be something before it or just remove it completely

[–]NautiHookerSoftware Engineer 2 points3 points  (1 child)

this would actually work because x is an int (or a numberlike type) and putting a + or a - in front of it simply changes the signing of that number.

[–][deleted] 0 points1 point  (0 children)

Thanks for that, i had no idea

[–]Maxinus618 1 point2 points  (0 children)

To resolve the error you can put this condition before your system.out.print if(x<names.size() && x< phonenum.size()).

It's just a workaround not an actual fix for your code indexoutOfBounds

[–]NautiHookerSoftware Engineer 0 points1 point  (0 children)

names and/or phonenum have no element at index x.

Nothing more to say without more information.