go语言里的断言功能是对 interface
类型的识别,可以对内置类型及自定义类型作识别。
参见下面的代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package main
import (
"fmt"
)
type (
mb = []byte
ms = string
mb2 []byte
)
func (b mb2) String() string {
return string(b)
}
func main() {
var ss ms
ss = "hikj"
itfs := []interface{}{
mb{97, 98, 99},
"def",
[]byte{103, 104, 105},
ss,
mb2{97, 98, 99},
}
for _, v := range itfs {
switch vs := v.(type) {
case string:
fmt.Println("v is string", vs)
case []byte:
fmt.Println("v is []byte", string(vs))
case mb2:
fmt.Println("v is mb2", vs.String())
}
}
}
运行输出:
1
2
3
4
5
v is []byte abc
v is string def
v is []byte ghi
v is string hikj
v is mb2 abc
注意的问题
使用类型别名时是相同的类型
1
2
mb = []byte
ms = string
使用类型再定义时是不同的类型
1
mb2 []byte
如果使用别名就添加不了自定义方法,如果要使用类型再定义,则在断言里需要指定识别该类型。
本文网址: https://pylist.com/topic/199.html 转摘请注明来源