Answers for "how check if you are at the last index of an array java"

4

get last index of array java

int[] someArray = {1,2,3,4,5};
int first = someArray[0];
int last = someArray[someArray.length - 1];
System.out.println("First: " + first + "\n" + "Last: " + last);
Posted by: Guest on August-16-2020

Code answers related to "how check if you are at the last index of an array java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language