qingtian-space / blog-comments

0 stars 0 forks source link

Collcetions 工具类 | 晴天的博客 #10

Open qingtian-space opened 2 years ago

qingtian-space commented 2 years ago

https://qtspace.cn/2022/03/02/Collections%E5%B7%A5%E5%85%B7%E7%B1%BB/#1-5-Collections%E5%85%B6%E4%BB%96API

java.util.Collections 是java集合框架中的一个工具类,主要用于Collectiont提供的通用算法,比如:排序(sort)、二分查找(binarySearch)、洗牌(shuffle)、旋转(rotate) 1. Collections.sort 排序 方法使用,代码测试 123456789101112131415161718192021List<String&gt

qingtian-space commented 2 years ago

Collections