Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 590 Bytes

README.md

File metadata and controls

36 lines (27 loc) · 590 Bytes

Go 每日一题

今日(2023-05-03)的题目如下

下面两段代码输出什么。

// 1.
func main() {
    s := make([]int, 5)
    s = append(s, 1, 2, 3)
    fmt.Println(s)
}

// 2.
func main() {
	s := make([]int,0)
	s = append(s,1,2,3,4)
	fmt.Println(s)
}
🔑 答案解析:
代码 1 输出:[0 0 0 0 0 1 2 3]
代码 2 输出:[1 2 3 4]

参考解析:这道题考的是使用 append 向 slice 添加元素,第一段代码常见的错误是 [1 2 3],需要注意。