首页 > 代码库 > Collections类及常用 API
Collections类及常用 API
//注意:Collection值接口,Collections是类
class CollectionDemo1{ public static void fun1(){ List<String> str=new ArrayList<>(); str.add("zhangsan"); str.add("wangwu"); str.add("liliu"); System.out.println("交换顺序之前:"); for (String string : str) { System.out.println(string+" "); } System.out.println(); Collections.swap(str, 1, 2); System.out.println("交换顺序之后:"); for (String string : str) { System.out.println(string+" "); } System.out.println(); Collections.sort(str); System.out.println("按照自然顺序排列:");//会按照字符串的顺序排列 for (String string : str) { System.out.println(string+" "); } System.out.println("二分法查找:"); int s = Collections.binarySearch(str, "wangwu"); System.out.println(s); System.out.println("打乱顺序"); Collections.shuffle(str); for (String string : str) { System.out.println(string+" "); } System.out.println("填充:"); Collections.fill(str, "Jolin"); for (String string : str) { System.out.println(string+" "); //内容全部会变成Jolin } } }
Collections类及常用 API
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。