这个题目有点怪

delaywu · · 1790 次点击
最好的避坑方法就是: 1. 要用`*`都用`*` 2. 要不用都不用 一个用一个不用,自己把自己绕迷 ```go // 方式一 m := make(map[string]*student) stus := []*student{} for _, stu := range stus { m[stu.name] = stu } // 方式二 m := make(map[string]student) stus := []student{} for _, stu := range stus { m[stu.name] = stu } ```
#10
更多评论
先把代码格式化一下
#1
delaywu
Golang在路上...
<a href="/user/jthmath" title="@jthmath">@jthmath</a> 麻烦帮我看看
#2