我想将 int 切片作为构造函数的输入,并返回指向原始列表的指针,将类型转换为我的外部自定义类型(type intlist []int
)。
我可以做到这一点:
type intlist []int func newintlistptr(ints []int) *intlist { x := intlist(ints) return &x }
但我不能这样做:
type IntList []int func NewIntListPtr(ints []int) *IntList { return &ints } // or this for that matter: func NewIntListPtr(ints []int) *IntList { return &(IntList(ints)) } // or this func NewIntListPtr(ints []int) *IntList { return &IntList(*ints) } // or this func NewIntListPtr(ints *[]int) *IntList { return &(IntList(*ints)) }
是否有一句话可以实现这一目标?
你这样做:
func NewIntListPtr(ints []int) *IntList { return (*IntList)(&ints) }