《重构》中过时的一些代码写法

# Encapsulate Collection(封装集合) ## 让这个函数返回该集合的一个只读副本,并在这个类中提供添加/移除集合 元素的函数。 原书中获取不可变Set是这样的: ``` public Set getCourses() { return Collections.unmodifiableSet(_courses); } ``` 但是在JDK9以后,可以这样: ``` Set stringSet = Set.of("a", "b", "c"); ``` 其他集合也会类似的用法: ``` List stringList = List.of("a", "b", "c"); ```

你可能感兴趣的:(《重构》中过时的一些代码写法)