1. 增加了jshell的命令行客户端 (相比较其他的稍微有点用处)
2. 多版本兼容jar (一个项目可以打出来适用于不同jdk版本的jar包)
3. 集合工厂方法 (超有用)
-- 之前创建方式
public static void main(String []args) {
Set<String> set = new HashSet<>();
set.add("A");
set.add("B");
set.add("C");
set = Collections.unmodifiableSet(set);
System.out.println(set);
List<String> list = new ArrayList<>();
list.add("A");
list.add("B");
list.add("C");
list = Collections.unmodifiableList(list);
System.out.println(list);
Map<String, String> map = new HashMap<>();
map.put("A","Apple");
map.put("B","Boy");
map.put("C","Cat");
map = Collections.unmodifiableMap(map);
System.out.println(map);
}
-- 现在创建方式
Set<String> set = Set.of("A", "B", "C");
System.out.println(set);
List<String> list = List.of("A", "B", "C");
System.out.println(list);
Map<String, String> map = Map.of("A","Apple","B","Boy","C","Cat");
System.out.println(map);
4. 接口中可以定义如下方法
常量,抽象方法,默认方法,静态方法,私有方法,私有静态方法
5. 改进的 Stream API
5.1.takeWhile() // takeWhile 方法在碰到空字符串时停止循环输出
// 示例
Stream.of("a","b","c","","e","f")
.takeWhile(s->!s.isEmpty())
.forEach(System.out::print);
// 输出
abc
5.2.dropWhile() // dropWhile 方法在碰到空字符串时开始循环输出
// 示例
Stream.of("a","b","c","","e","f")
.dropWhile(s-> !s.isEmpty())
.forEach(System.out::print);
// 输出
ef
5.3.iterate() // 变相for循环
// 示例
IntStream.iterate(3, x -> x < 10, x -> x+ 3).forEach(System.out::println);
// 输出
3,6,9
5.4.ofNullable() // 判NULL,防止空指针异常
6. try-with-resources
7. 改进的@Deprecated (过期方法)
8. 改进的 Optional 类
标签:map,set,代码,list,System,特性,println,java9,out From: https://blog.51cto.com/u_16021118/6140770