• 2022-06-08
    中国大学MOOC: What is the result of the following?List list = new ArrayList<>();list.add(5.4);list.add(1.2);Optional opt = list.stream().sorted().findFirst();System.out.println(opt.get() + + list.get(0));