I must be missing something very obvious, but I've searched all over and can't find this method.
|
feedback
|
|
There are a couple of ways to accomplish this using the If the array is not sorted:
If the array is sorted, you can make use of a binary search for performance:
| |||||||||||||
feedback
|
|
Array has no Maybe this Apache ArrayUtils method is what you are looking for
| |||
|
feedback
|
|
There is none. Either use a
*you can make one from your array using | ||||
|
feedback
|
|
Java | |||||
feedback
|
|
Arrays themselves do not have that method. An ArrayList, however, does: indexOf | |||||||
feedback
|
|
I don't recall of a "indexOf" on arrays other than coding it for yourself... though you could probably use one of the many | |||
|
feedback
|
|
The List interface has an indexOf() method, and you can obtain a List from your array with Array's asList() method. Other than that, Array itself has no such method. It does have a binarySearch() method for sorted arrays. | |||
|
feedback
|
|
You're probably thinking of the java.util.ArrayList, not the array. | |||
|
feedback
|
|
For primitives, if you want to avoid boxing, Guava has helpers for primitive arrays e.g. Ints.indexOf(int[] array, int target) | |||
|
feedback
|