首页 > 文章列表 > 将 int 切片转换为自定义的 int 切片指针类型的函数:在 Go 中进行类型转换

将 int 切片转换为自定义的 int 切片指针类型的函数:在 Go 中进行类型转换

327 2024-02-04
问题内容

我想将 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)
}