初级会员
  • 第 38395 位会员
  • iwanweichao
  • 2019-06-11 10:06:27
  • Offline
  • 19 97

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 这种思考方式,感觉很合理,但是值传递就会必然造成内存增长,这么理解用指针也没有问题。感觉都不知道用那种方式了
  • 评论了博文 Go interface详解
    func main() { var x interface{} =func(x int)string{ return fmt.Sprintf("d:%d",x) } switch v:=x.(type) { // 局部变量v是类型转换后的结果 case nil: println("nil") case*int: println(*v) case func(int)string: println(v(100)) case fmt.Stringer: fmt.Println(v) default: println("unknown") } } type是那里来的?没看懂