AdSense

網頁

2023/1/22

Golang append slice to slice

Go把一個slice append到slice的方式如下。


append附加的slice後加上...即可。

main.go

package main

import "fmt"

func main() {
    slice1 := []int{1, 2, 3}
    slice2 := []int{4, 5}

    slice1 = append(slice1, slice2...)

    fmt.Println(slice1) // [1 2 3 4 5]
}


沒有留言:

AdSense