Java 如何从数组中生成随机数

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/2527640/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-13 08:51:08  来源:igfitidea点击:

how to generate random number from array

javaarraysrandom

提问by Jessy

How to generate random number from an array? and not from a range.

如何从数组中生成随机数?而不是来自一个范围。

int n [] = {1,7,3,5,8,10,33,12,18}

采纳答案by Barthelemy

import java.util.Random;

...

Random random = new Random();
System.out.println(n[random.nextInt(n.length)]);

回答by kbenson

In general terms, get a random integer ranging from a minimum of 0 to a maximum of the array length -1, and use that as the array index.

一般而言,获取一个从最小 0 到最大数组长度 -1 的随机整数,并将其用作数组索引。