Merge pull request #1015 from Xunzhuo/patch-1

补充switch的使用
This commit is contained in:
CyC2018 2020-11-18 03:03:52 +08:00 committed by GitHub
commit 0c65b30a8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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