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
Release: 2024-12-01 04:23:11
Original
888 people have browsed it

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?
Copy after login

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];
}
Copy after login

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!

source:php.cn
Statement of this Website
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template