写点什么

2022-09-18:以下 go 语言代码输出什么?A:1;B:15;C:panic index out of range;D:doesn’t compile。 package main import

  • 2022 年 9 月 18 日
    北京
  • 本文字数:162 字

    阅读完需:约 1 分钟

2022-09-18:以下go语言代码输出什么?A:1;B:15;C:panic index out of range;D:doesn’t compile。 package main import

2022-09-18:以下 go 语言代码输出什么?A:1;B:15;C:panic index out of range;D:doesn’t compile。


package main
import ( "fmt")
func main() { nums := []int{1, 2, 3, 4, 5} sum := 0 for i, n := range nums { i = 6 sum += n } fmt.Println(sum)}
复制代码


答案选 D。这道题很多人会选 B。i 处于未使用状态,编译不会通过。



发布于: 刚刚阅读数: 3
用户头像

还未添加个人签名 2021.02.15 加入

还未添加个人简介

评论

发布
暂无评论
2022-09-18:以下go语言代码输出什么?A:1;B:15;C:panic index out of range;D:doesn’t compile。 package main import_golang_福大大架构师每日一题_InfoQ写作社区