How to find the index of an element in an int array?

Integer[] array = {1,2,3,4,5,6};

Arrays.asList(array).indexOf(4);

Note that this solution is threadsafe because it creates a new object of type List.

Also you don’t want to invoke this in a loop or something like that since you would be creating a new object every time

Leave a Comment