在工具类Collection类中调用sort()方法默认按首字母从a-z排序:要想降序需要借助表达式(a, b) -> b.compareTo(a) ;在Collection工具类中直接调用shuffer()方法,可以打乱集合中元素排列顺序。
一、代码展示
/*
* Copyright (c) 2020, 2023, webrx.cn All rights reserved.
*
*/
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* <p>Project: jse2303 - Jihe4</p>
* <p>Powered by webrx On 2023-07-19 14:58:43</p>
* <p>描述:<p>
*
* @author 简单遗忘 [814736551@qq.com]
* @version 1.0
* @since 17
*/
public class Jihe4 {
public static void main(String[] args) {
//字符串排序
//1 首先创建一个字符串泛型的集合
List<String> list = new ArrayList(List.of("ban", "hello", "c", "c++", "abcdefg"));
//按字母 a-z升序
Collections.sort(list);
System.out.println("升序排列:" + list);
//按字母 z-a降序 Collection 借助表达式
Collections.sort(list, (a, b) -> b.compareTo(a));
System.out.println("降序后排列" + list);
//乱序
Collections.shuffle(list);
System.out.println("乱序后排列:" + list);
//根据字符串的长度进行升序
Collections.sort(list, (a, b) -> a.length() - b.length());
System.out.println("根据字符串的长度进行升序:" + list);
//根据字符串的长度进行降序
Collections.sort(list, (a, b) -> b.length() - a.length());
System.out.println("根据字符串的长度进行降序:" + list);
}
}
二、运行结果展示