Home >Java >javaTutorial >How Can I Randomly Select an Element from an Integer Array in Java?

How Can I Randomly Select an Element from an Integer Array in Java?

Linda Hamilton
Linda HamiltonOriginal
2024-12-01 04:23:11952browse

How Can I Randomly Select an Element from an Integer Array in Java?

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn