为了账号安全,请及时绑定邮箱和手机立即绑定

Golang 以不同的方式创建结构体

Golang 以不同的方式创建结构体

Go
慕少森 2021-12-07 14:19:38
伙计们!我是 Go 的初学者。当我学习reflect包时,我有一些疑问,这是代码:package mainimport (    "encoding/json"    "fmt"    "reflect")func checkError(err error) {    if err != nil {        panic(err)    }}type Test struct {    X int    Y string}func main() {    fmt.Println("hello world!")    test1()    test2()}func test1() {    a := Test{}    fmt.Printf("a: %v %T \n", a, a)    fmt.Println(a)    err := json.Unmarshal([]byte(`{"X":1,"Y":"x"}`), &a)    checkError(err)    fmt.Printf("a: %v %T \n", a, a)}func test2() {    fmt.Println("===========================")    m := make(map[string]reflect.Type)    m["test"] = reflect.TypeOf(Test{})    a := reflect.New(m["test"]).Elem().Interface()    fmt.Printf("a: %v %T \n", a, a)    fmt.Println(a)    err := json.Unmarshal([]byte(`{"X":1,"Y":"x"}`), &a)    checkError(err)    fmt.Printf("a: %v %T \n", a, a)}结果:a: {0 } main.Test {0 }a: {1 x} main.Test ===========================a: {0 } main.Test {0 }a: map[X:1 Y:x] map[string]interface {}为什么这两种方式会产生不同的结果,谁能告诉我为什么,非常感谢。
查看完整描述

1 回答

?
子衿沉夜

TA贡献1828条经验 获得超3个赞

在test2您传入interface{}包含Test值的地址。当 json 包取消引用该值时,它只会看到一个interface{},因此它会解组为默认类型。


您需要的是一个interface{}包含指向Test值的指针。


// reflect.New is creating a *Test{} value.

// You don't want to dereference that with Elem()

a := reflect.New(m["test"]).Interface()


// 'a' contains a *Test value. You already have a pointer, and you

// don't want the address of the interface value.

err := json.Unmarshal([]byte(`{"X":1,"Y":"x"}`), a)


查看完整回答
反对 回复 2021-12-07
  • 1 回答
  • 0 关注
  • 137 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信