随机数
Posted My_blog_s
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机数相关的知识,希望对你有一定的参考价值。
Random rad = new Random();
String [] temp={"a","b","c","d","e"};
ArrayList list = new ArrayList();
for (int j = 0; j < temp.length; j++) {
list.add(temp[j]);
}
for (int j = 0; j < temp.length; j++) {
int index = rad.nextInt(list.size());
System.out.println(list.get(index));
list.remove(list.get(index));
}
以上是关于随机数的主要内容,如果未能解决你的问题,请参考以下文章