是否可以区分switch case[]interface{}和interface{}in switch case?
尝试创建一个解码函数,您可以在其中传递不同的类型,然后 switch case 确定类型,然后继续解码该特定类型。虽然当传递的类型是[]interface{}.
我一直在试验这个reflect包,但到目前为止没有运气。请参阅下面的代码片段和游乐场链接。
package main
import (
"fmt"
"math/big"
)
type Test struct {
t interface{}
}
func main() {
testVar1 := big.NewInt(0)
testVar2 := int64(1)
testVar3 := []byte("test")
testVar4 := true
testVar5 := []int{1, 2, 3, 4}
var testVar6 Test
Issue(testVar1)
Issue(testVar2)
Issue(testVar3)
Issue(testVar4)
Issue(testVar5)
Issue(testVar6)
}
func Issue(t interface{}) {
switch t.(type) {
case *big.Int:
fmt.Println("*big.Int")
case int8, int16, int32, int64:
fmt.Println("int8, int16, int32, int64")
case []byte:
fmt.Println("[]byte")
case bool:
fmt.Println("bool")
case []interface{}:
fmt.Println("how to get testVar5 to print here")
fmt.Println("[]interface{}")
case interface{}:
fmt.Println("interface{}")
default:
fmt.Println("unsupported type")
}
}
结果:
*big.Int
int8, int16, int32, int64
[]byte
bool
interface{}
interface{}
有什么办法可以testVar5破案[]interface{}吗?
https://play.golang.org/p/U0dJF9CEbTX
慕姐4208626
慕工程0101907
相关分类