mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-16 11:23:40 +00:00
commit
374c07ae38
@ -48,11 +48,11 @@ switch语句可以简化if-else链,如果这个if-else链对一连串值做相
|
|||||||
|
|
||||||
```go
|
```go
|
||||||
switch x.(type) {
|
switch x.(type) {
|
||||||
case nil: // ...
|
case nil: // ...
|
||||||
case int, uint: // ...
|
case int, uint: // ...
|
||||||
case bool: // ...
|
case bool: // ...
|
||||||
case string: // ...
|
case string: // ...
|
||||||
default: // ...
|
default: // ...
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user