首页 > 代码库 > 随机获取部分List<Object>集合
随机获取部分List<Object>集合
随机返回list对象
/** * 返回随机List * @param list 备选 * @param selected 备选数量 * @return */ public List getRandomNum(List list, int selected) { List<Object> reList = new ArrayList<Object>(); Random random = new Random(); // 先抽取,备选数量的个数 if (list.size() >= selected) { for (int i = 0; i < selected; i++) { // 随机数的范围为0-list.size()-1; int target = random.nextInt(list.size()); reList.add(list.get(target)); list.remove(target); } } else { selected = list.size(); for (int i = 0; i < selected; i++) { // 随机数的范围为0-list.size()-1; int target = random.nextInt(list.size()); reList.add(list.get(target)); list.remove(target); } } return reList; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。