JDK8如何寫出優雅代碼

只要掌握如下3點:四大函數式接口、函數式接口經常使用操做、Stream流式常規操做
/**
 * @desc Java四大內置函數式接口
 *  Consumer<T>:消費型接口
 *      void accept(T t);
 *  Suppler<T>:供給型接口
 *      T get();
 *  Function<T, R>:函數型接口
 *      R apply(T t);
 *  Predicate<T>:斷言型接口
 *      boolean test(T t);
 * @Author xw
 * @Date 2019/9/9
 */
public class JDKFuncInterfaceDemo {
    public static void main(String[] args) {
        // Consumer<T>:消費型接口
        printConsumer("abcd", (x) -> System.out.println(x));
        // Suppler<T>:供給型接口;
        // 案例:產生指定個數的整數,並放入集合中
        int num = 5;
        getNumList(num, () -> new Random().nextInt(100)).stream().forEach(System.out::println);
        // Function<T, R>:函數型接口;
        // 案例:字符串處理(轉大小寫、截取等)
        System.out.println(strHandler("abcdefg", str -> str.toUpperCase()));
        System.out.println(strHandler("abcdefg", str -> str.substring(0,3)));
        // Predicate<T>:斷言型接口(見MyFuncInterfaceDemo)
    }
    private static void printConsumer(String str, Consumer<String> func) {
        func.accept(str);
    }
    private static String strHandler(String str, Function<String, String> func) {
        return func.apply(str);
    }
    private static List<Integer> getNumList(int num, Supplier<Integer> sup) {
        List<Integer> list = new ArrayList<>(num);
        for (int i = 0; i < num; i++) {
            list.add(sup.get());
        }
        return list;
    }
}

/**
 * @desc
 * 查詢員工年齡大於25,薪資大於5000的
 * 1、接口引用
 * 1.常規操做
 * 2.使用策略模式
 * 3.使用匿名內部類
 * 4.使用Lambda
 * 5.使用Stream
 *
 * 2、方法引用
 * 1.對象::實例方法
 * 2.類::靜態方法名
 * 3.類::實例方法名
 *
 * 3、構造器引用
 *
 * 4、數組引用
 *
 * @Author xw
 * @Date 2019/9/9
 */
public class MyFuncInterfaceDemo {
    public static void main(String[] args) {

        // 1、接口引用
        List<Employee> list = Arrays.asList(
                new Employee("zhangsan", 20, 2500),
                new Employee("lisi", 25, 4000),
                new Employee("wangwu", 35, 8000),
                new Employee("maliu", 45, 9000),
                new Employee("tianqi", 50, 8000),
                new Employee("smis", 26, 3000));
        // 1.常規操做
        test_normal(list);
        // 2.使用策略格式
        test_strategy(list);
        // 3.使用內部類
        test_inner_class(list);
        // 4.使用Lambda
        test_lambda(list);
        // 5.使用Stream
        test_stream01(list);
        test_stream02(list);

        // 2、方法引用
        // 1.對象::實例方法
         test_instance_method();
        // 2.類::靜態方法名
         test_static_method();
        // 3.類::實例方法名(第一個參數x與第二個參數y,作一個運算判斷)
         test_normal_method();

        // 3、構造器引用(實例名::new)
         test_constructor_method();

        // 4、數組引用
        test_array_method();
    }
}

/**
 * @desc Stream常規操做
 * 1.建立Stream的幾種方式
 * 2.流轉集合的幾種方式
 * 3.統計
 *  3.1 以總數、平均值、最小值爲例
 *  3.2 歸約
 * 4.字符串拼接
 * 5.分組、分區
 * @Author xw
 * @Date 2019/9/11
 */
public class StreamOperatorDemo {
    static List<Employee> employees = Arrays.asList(
            new Employee("zhangsan", 40, 2500, Employee.EmployeeType.EMP),
            new Employee("lisi", 25, 4000, Employee.EmployeeType.EMP),
            new Employee("wangwu", 35, 2500, Employee.EmployeeType.EMP),
            new Employee("maliu", 45, 9000, Employee.EmployeeType.MGR),
            new Employee("tianqi", 50, 8000, Employee.EmployeeType.MGR),
            new Employee("smis", 26, 3000, Employee.EmployeeType.EMP));

    public static void main(String[] args) {
        // 1.建立Stream的幾種方式
        test_create_stream();
        // 2.轉集合的幾種方式
        test_to_collect();
        // 3.統計(以總數、平均值、最小值爲例)
        test_to_count();
        // 4.字符串拼接
        test_append_str();
        // 5.分組、分區
        test_groupby_partitioningBy();
    }
}

 

 

更多操做,請移步:https://line007.github.io/2019/10/28/jdk8%E5%9F%BA%E6%9C%AC%E7%94%A8%E6%B3%95/#more  git

github地址:https://github.com/line007/jucdemo2github

博客地址:https://line007.github.io/數組

相關文章
相關標籤/搜索