码迷,mamicode.com
首页 > 其他好文 > 详细

Go每日一题(3)

时间:2019-12-26 19:10:28      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:rgs   fun   个数   code   col   nbsp   app   color   pen   

new(T) 与 make(T, args)

合并数组

package main

import (
    "fmt"
)

func main() {
    list := []int{} // new([]int) 返回的是指针,非集合,调append会报错
    list = append(list, 1)
    fmt.Println(list)

    s1 := []int{1, 2, 3}
    s2 := []int{4, 5}
    s1 = append(s1, s2...)  // 合并两个数组,必须带 “...”
    fmt.Println(s1)
}

 

Go每日一题(3)

标签:rgs   fun   个数   code   col   nbsp   app   color   pen   

原文地址:https://www.cnblogs.com/dzone/p/12103829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!