摘要: 2022-09-02:以下go语言代码输出什么?A:9;B:11;C:编译错误;D:不确定。 package main import ( "fmt" ) func main() { s := []int{9, 8, 7} p := &s r := *p r[0] = 11 fmt.Println(s 阅读全文
posted @ 2022-09-02 21:50 福大大架构师每日一题 阅读(29) 评论(0) 推荐(0) 编辑