Merge branch 'master' of https://github.com/CyC2018/InterviewNotes
This commit is contained in:
commit
4e0d9b2955
|
@ -128,6 +128,7 @@ public InitialOrderTest() {
|
|||
5. 子类(实例变量、普通语句块)
|
||||
6. 子类(构造函数)
|
||||
|
||||
<<<<<<< HEAD
|
||||
**5. 静态内部类**
|
||||
|
||||
内部类的一种,静态内部类不依赖外部类,且不能访问外部类的非 static 变量和方法。
|
||||
|
@ -139,6 +140,17 @@ import static com.xxx.ClassName.*
|
|||
```
|
||||
|
||||
在使用静态变量和方法时不用再指明 ClassName,从而简化代码,但可读性大大降低。
|
||||
=======
|
||||
**5. 静态内部类**
|
||||
|
||||
内部类的一种,静态内部类不依赖外部类,且不能访问外部类的非static变量和方法。
|
||||
|
||||
**6. 静态导包**
|
||||
```java
|
||||
import static com.xxx.ClassName.*
|
||||
```
|
||||
在使用静态变量和方法时不用再指明ClassName,从而简化代码,但可读性大大降低。
|
||||
>>>>>>> 5d681ae4519085c2e32d20c9be3e5d55bde62ab1
|
||||
|
||||
# 二、Object 通用方法
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user