auto commit

This commit is contained in:
CyC2018 2018-02-28 21:29:27 +08:00
parent 1f9b41831f
commit 09787e35a0
2 changed files with 6 additions and 2 deletions

View File

@ -70,6 +70,10 @@
File、InputStream 和 OutputStream、Reader 和 Writer、Serializable、Socket 以及 NIO
> [Java 基础](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/Java%20基础.md)
一些引用的英文就不翻译了,各位就当培养英语阅读能力吧~
# 编码实践
> [重构](https://github.com/CyC2018/InnterviewNotes/blob/master/notes/重构.md)

View File

@ -19,7 +19,7 @@
* [1. String, StringBuffer and StringBuilder](#1-string,-stringbuffer-and-stringbuilder)
* [2. String 不可变的原因](#2-string-不可变的原因)
* [3. String.intern()](#3-stringintern)
* [基本类型与运算](#基本类型与运算)
* [基本类型与运算](#基本类型与运算)
* [1. 包装类型](#1-包装类型)
* [2. switch](#2-switch)
* [反射](#反射)
@ -314,7 +314,7 @@ String 不可变性天生具备线程安全,可以在多个线程中使用。
更详细的内容:[揭开 String.intern() 那神秘的面纱](https://www.jianshu.com/p/95f516cb75ef)
## 基本类型与运算
# 基本类型与运算
## 1. 包装类型