摘要: 2022-07-14:以下go语言代码输出什么?A:1;B:3;C:4;D:编译错误。 package main import ( "fmt" ) func main() { a := [5]int{1, 2, 3, 4, 5} t := a[3:4:4] fmt.Println(t[0]) } 答 阅读全文
posted @ 2022-07-14 21:11 福大大架构师每日一题 阅读(14) 评论(0) 推荐(0) 编辑