dousi2553 2016-04-25 05:34 采纳率: 0%
浏览 67
已采纳

使用指向切片的指针进行切片

I am trying to modify slice a slice in another function, using the following code:

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)
}

What I want is, 1st and last element of the slice. But, in doing so, I am getting following error:

cannot use tmp[:1] (type []DT) as type DT in append

I am relatively new to Go Language, so kindly guide me through this one!

展开全部

  • 写回答

1条回答 默认 最新

  • dqj5046 2016-04-25 05:37
    关注

    You should use operator ... to convert slice into list of variadic arguments.

     b = append(b, tmp[:1]...)
     b = append(b, tmp[2:]...)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部