我正在尝试使用以下代码来修改另一个函数中的slice片段:

type DT struct {
    name string
    number int
}

func slicer(a *[]DT) {
    tmp := *a
    var b []DT
    b = append(b, tmp[:1], tmp[2:])
    *a = b
}

func main() {
    o1 := DT {
        name: "name-1",
        number: 1,
    }
    o2 := DT {
        name: "name-2",
        number: 2,
    }
    o3 := DT {
        name: "name-3",
        number: 3,
    }

    b := make([]DT, 0)
    b = append(b, o1)
    b = append(b, o2)
    b = append(b, o3)

    slicer(&b)
    fmt.Println(b)
}

我想要的是 slice 的第一个和最后一个元素。但是,这样做时出现以下错误:
cannot use tmp[:1] (type []DT) as type DT in append

我是Go语言的新手,所以请指导我完成这一门类(class)!

最佳答案

您应该使用运算符...将slice转换为可变参数列表。

 b = append(b, tmp[:1]...)
 b = append(b, tmp[2:]...)

关于go - 使用指向 slice 的指针进行 slice ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36842161/

10-13 09:19