ia := []interface{}{byte(6), 'a', uint(10), int32(-4)}这句怎么解释呢
[]interface{} 表示创建一个空接口的数组,空接口可以存放任意类型,所以可以是 byte , string ,int 等等。 不知掉这样的理解是不是正确