Files
zfoo/doc/FAQ.md
T
2021-06-25 21:10:28 +08:00

12 lines
407 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#### 为什么选择 Java 11 而不是 Java 8
```
1. var可以减少非常多的代码,使代码更加简介
2. Java 11的版本统一了apiOracle JDK 和 Open JDK 可以无缝切换
3. 11对容器支持友好,现在是容器的时代,反观 Java 8 的一些老版本都不支持容器
4. Java 8过两年会停止维护,能早用就早用
5. 主流的框架全部都已经支持Java 11
```
---