缓冲池
1. new Integer(123)每次都会新建一个对象
2. Integer.valueOf(123)会使用缓冲池的对象,多次调用会取得同一个对象的引用
https://pdai.tech/md/java/basic/java-basic-lan-basic.html