小编典典

为数组生成随机索引

java

我知道普通整数,但是有索引这样的东西吗?

Random dice = new Random();
int n = dice.nextInt(6);
System.out.println(n);

阅读 394

收藏
2020-11-30

共1个答案

小编典典

你什么意思?数组索引是普通数,因此您可以轻松地执行

String names[] = { "One", "Two", "Three", "Four", "Five", "Six" };
Random Dice = new Random(); 
int n = Dice.nextInt(6); 
System.out.println(names[n]);

还是说随机的Iterator类?Google是您的朋友,是我的第一个热门。

2020-11-30