Randomly Selecting Elements from an Array
Many programming tasks require the random selection of elements from a collection. This article presents a solution to randomly pick an element from an integer array.
Consider the following example:
int[] array = {1, 2, 3}; How can we randomly select a number from this array?
To address this problem, we provide a Java implementation that leverages the Random class to generate a random index within the array and return the element at that index:
public static int getRandom(int[] array) { int rnd = new Random().nextInt(array.length); return array[rnd]; }
The above is the detailed content of How Can I Randomly Select an Element from an Integer Array in Java?. For more information, please follow other related articles on the PHP Chinese website!