go语言 append 函数的使用

Posted 张志翔ۤ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go语言 append 函数的使用相关的知识,希望对你有一定的参考价值。

        1、append函数的使用

        作用:在原切片的末尾添加元素

        示例:  

package main //必须有个main包
 
import "fmt"
 
func main() {
    s1 := []int{}
    fmt.Printf("len = %d, cap = %d\\n", len(s1), cap(s1))
    fmt.Println("s1 = ", s1)
 
    //在原切片的末尾添加元素
    s1 = append(s1, 1)
    s1 = append(s1, 2)
    s1 = append(s1, 3)
    fmt.Printf("len = %d, cap = %d\\n", len(s1), cap(s1))
    fmt.Println("s1 = ", s1)
 
    s2 := []int{1, 2, 3}
    fmt.Println("s2 = ", s2)
    s2 = append(s2, 5)
    s2 = append(s2, 5)
    s2 = append(s2, 5)
    fmt.Println("s2 = ", s2)
}

        #执行结果:

len = 0, cap = 0
s1 =  []
len = 3, cap = 4
s1 =  [1 2 3]
 
s2 =  [1 2 3]
s2 =  [1 2 3 5 5 5]

        到此 go语言 append 函数的使用介绍完成。

以上是关于go语言 append 函数的使用的主要内容,如果未能解决你的问题,请参考以下文章

go语言 append 函数的使用

GO 智能合约cannot use transactionRecordId + strconv.Itoa(id) (type string) as type byte in append(示例代码(代

go语言基础之append函数的使用

go语言笔记——append是内置的函数!!!new是一个函数!!!调试可以使用闭包,本质上是print调试,尼玛!

Go语言-make陷阱和闭包函数

Go语言内置类型和函数