码迷,mamicode.com
首页 > 编程语言 > 详细

Go语言变量声明

时间:2019-09-23 22:29:57      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:var   变量   hello   变量声明   定义   决定   string   定义变量   类型   

使用var关键字

  • var a, b, c bool
  • var s1, s2 string = "hello", "world"
  • 可放在函数内或直接放在包内
  • 使用var()集中定义变量

让编译器自动决定类型

  • var a, b = true,3

使用:=定义变量

  • a, b, c := true, 3, "hello"
  • 只能在函数内使用

Go语言变量声明

标签:var   变量   hello   变量声明   定义   决定   string   定义变量   类型   

原文地址:https://www.cnblogs.com/catcherintherhy/p/11575240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!