补充switch的使用

This commit is contained in:
LIU 2020-11-17 19:26:46 +08:00 committed by GitHub
parent fe29962932
commit 877c43f824
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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