初级会员
  • 第 14851 位会员
  • coco
  • 2017-12-13 08:20:58
  • Offline
  • 21 10

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • 2017-12-16 12:20:55 评论了博文 Go 系列教程 —— 5. 常量
    #有点费解,如果如下证明: >fmt.Printf("%T,%v \n", "Hello World", "Hello World") #输出 >string,Hello World #是不是可以证明常量"Hello World"有类型为string ?
  • 2017-12-16 12:19:00 评论了博文 Go 系列教程 —— 5. 常量
    有点费解,如果如下证明 fmt.Printf("%T,%v \n", "Hello World", "Hello World") 输出 string,Hello World 是不是可以证明常量"Hello World"有类型为string ?
  • 2017-12-16 11:42:23 评论了博文 Go 系列教程 —— 5. 常量
    const hello = "Hello" fmt.Printf("type %T value %v", hello, hello) 输出: type string value Hello 常量仍然没有类型怎么理解?