电光石火-穿越时空电光石火-穿越时空


Java List 随机取值的多种方法

为了从列表中获取随机元素,需要生成一个随机索引号,然后使用list.get()方法通过生成的索引编号获取元素。

这里关键是要记住,不得使用超过列表大小的索引。

  • 方法 1
public static void main(String[] args) {
     List<String> list = Arrays.asList("a","b","c");
     int index = (int) (Math.random()* list.size());
     System.out.println(list.get(index));
}
  • 方法 2
 public static void main(String[] args) {
     List<String> list = Arrays.asList("a","b","c");
     int index = new Random().nextInt(list.size());
     System.out.println(list.get(index));
}
  • 方法 3
public static void main(String[] args) {
     List<String> list = Arrays.asList("a","b","c");
     // shuffle 打乱顺序 
     Collections.shuffle(list);
     System.out.println(list.get(0));
}
本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => Java List 随机取值的多种方法
本文地址:http://ilkhome.cn/index.php/archives/861/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 Java List 随机取值的多种方法,谢谢。

评论