Go语言变量声明

2020-12-13 15:10

阅读:496

标签: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


评论


亲,登录后才可以留言!