摘要: 一、List 集合截取部分内容 userList = userList .subList(5,10); 截取 userList [5,10) 条数据 二、将有序的集合打乱(变为乱序) Collections.shuffle(userList); 将userList 内容的元素打乱 三、将两个List 阅读全文
posted @ 2020-12-25 14:48 byebai95 阅读(199) 评论(0) 推荐(0) 编辑