go语言接口断言
2021-02-07 02:18
标签:利用 实现 匹配 Go语言 new 就会 type switch 语句 因为空接口 interface{}没有定义任何函数,因此 Go 中所有类型都实现了空接口。当一个函数的形参是interface{},那么在函数中,需要对形参进行断言,从而得到它的真实类型。 语法格式: 示例代码: 断言其实还有另一种形式,就是用在利用 switch语句判断接口的类型。每一个case会被顺序地考虑。当命中一个case 时,就会执行 case 中的语句,因此 case 语句的顺序是很重要的,因为很有可能会有多个 case匹配的情况。 示例代码: go语言接口断言 标签:利用 实现 匹配 Go语言 new 就会 type switch 语句 原文地址:https://www.cnblogs.com/ivy-blogs/p/12778961.html接口断言
// 安全类型断言
, := .( 目标类型 )
//非安全类型断言
:= .( 目标类型 )
package main
import "fmt"
func main() {
var i1 interface{} = new (Student)
s := i1.(Student) //不安全,如果断言失败,会直接panic
fmt.Println(s)
var i2 interface{} = new(Student)
s, ok := i2.(Student) //安全,断言失败,也不会panic,只是ok的值为false
if ok {
fmt.Println(s)
}
}
type Student struct {
}
switch ins:=s.(type) {
case Triangle:
fmt.Println("三角形。。。",ins.a,ins.b,ins.c)
case Circle:
fmt.Println("圆形。。。。",ins.radius)
case int:
fmt.Println("整型数据。。")
}