/**
* 在list集合中随机取出指定数量的元素
* @param list 取元素的集合
* @param count 个数
* @return
*/
public static List getRandomThreeInfoList(List list, int count) {
List olist = new ArrayList<>();
if (list.size() <= count) {
return list;
} else {
Random random = new Random();
for (int i = 0 ;i<count;i++){
int intRandom = random.nextInt(list.size() - 1);
olist.add(list.get(intRandom));
list.remove(list.get(intRandom));
}
return olist;
}
}
java list中随机取出几条数据
最新推荐文章于 2024-08-17 04:01:00 发布