如何使用指针类型的匿名成员初始化Go结构体?

huangapple go评论80阅读模式
英文:

How to initialize Go struct with anonymous member of pointer type?

问题

使用指针类型初始化结构体的匿名成员的常规方式如下:

package main

import "fmt"

type AA struct {
    int
    xx string
}

func main() {
    a := &AA{
        int: 1,
        xx:  "2",
    }
    fmt.Println(a) // &{1 2}
}

但是,如果类型是指针,则不能再这样做:

package main

import "fmt"

type AA struct {
    *int
    xx string
}

func main() {
    i := 1
    a := &AA{
        *int: &i,
        xx:   "2",
    }
    fmt.Println(a)
    // .\hello.go:14: invalid field name *int in struct initializer
}

有没有更好的方法呢?

英文:

the normal way to initial a struct with anonymous member is like this:

package main

import "fmt"


type AA struct {
        int
        xx string
}

func main() {
        a := &AA{
                int : 1,
                xx : "2",
        }
        fmt.Println(a) // &{1 2}
}

but, if the type is a pointer, can't do this any more

package main

import "fmt"


type AA struct {
        *int
        xx string
}

func main() {
        i := 1
        a := &AA{
                *int : &i,
                xx : "2",
        }
        fmt.Println(a)
}
// .\hello.go:14: invalid field name *int in struct initializer

is there any better way?

答案1

得分: 1

*int字段的名称只是int

package main

import "fmt"

type AA struct {
	*int
	xx string
}

func main() {
	i := 1
	a := &AA{
		int: &i,
		xx:  "2",
	}
	fmt.Println(a)
}

*int字段是一个指向int类型的指针。在上述代码中,AA结构体包含了一个*int字段和一个xx字段。在main函数中,我们创建了一个AA类型的变量a,并将int字段指向变量i的地址,同时将xx字段赋值为字符串"2"。最后,我们使用fmt.Println函数打印出变量a的值。

英文:

The name of *int field is just int:

package main

import "fmt"

type AA struct {
	*int
	xx string
}

func main() {
	i := 1
	a := &AA{
		int: &i,
		xx:  "2",
	}
	fmt.Println(a)
}

huangapple
  • 本文由 发表于 2016年2月13日 12:18:41
  • 转载请务必保留本文链接:https://go.coder-hub.com/35376025.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定