Update Java 基础.md

This commit is contained in:
zhang xuelong 2018-06-21 18:45:03 +08:00 committed by GitHub
parent 4fbc607279
commit e9c5001365
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -317,7 +317,7 @@ switch (s) {
}
```
switch 不支持 long是因为 swicth 的设计初衷是为那些只需要对少数的几个值进行等值判断,如果值过于复杂,那么还是用 if 比较合适。
switch 不支持 long是因为 switch 的设计初衷是为那些只需要对少数的几个值进行等值判断,如果值过于复杂,那么还是用 if 比较合适。
```java
// long x = 111;