初级会员
  • 第 22009 位会员
  • andnew
  • yong.wang
  • 2018-08-21 19:28:06
  • Offline
  • 19 90

最近发布的主题

    暂无

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

    暂无

最近的评论

  • package main func main() { const trueConst = true type myBool bool var defaultBool = trueConst // 允许 // 应该是不允许的 var customBool myBool = trueConst // 允许 defaultBool = customBool // 不允许 }
  • 示例4 拼写有错误 package main import "fmt" func main() { var width, height int = 100, 50 // 声明多个变量 fmt.Println("width is", width, "height is", heigh) //heigh 少写了一个t }