java怎么取随机不同的数组

java 中生成不重复随机数组的方法有两种:1. 使用 collections.shuffle() 方法打乱数组;2. 使用 random 类生成随机数,不断从数组中删除相应元素。

java怎么取随机不同的数组

如何用 Java 获取随机不同的数组

为了生成一个不重复元素的随机数组,Java 提供了以下两种方法:

1. 使用 Collections.shuffle() 方法

Collections.shuffle() 方法可以对给定的数组进行随机打乱。使用此方法可以达到随机数组的目的。

import java.util.Collections;
import java.util.Arrays;

public class RandomArray {

    public static void main(String[] args) {
        int[] numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

        // 打乱数组
        Collections.shuffle(Arrays.asList(numbers));

        // 输出随机数组
        System.out.println(Arrays.toString(numbers));
    }
}

2. 使用 Random 类

Random 类可以生成随机数。通过不断生成随机数并从数组中删除相应的元素,可以得到不重复的随机数组。

import java.util.Random;

public class RandomArray {

    public static void main(String[] args) {
        int[] numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};

        // 创建 Random 对象
        Random random = new Random();

        // 创建新数组
        int[] randomNumbers = new int[numbers.length];

        // 将元素从原始数组复制到新数组
        for (int i = 0; i 

以上就是java怎么取随机不同的数组的详细内容,更多请关注www.sxiaw.com其它相关文章!