常量

常量的声明与变量类似,只不过是使用 const 关键字。

常量可以是字符、字符串、布尔值或数值。

常量不能用 := 语法声明。

constants.go

  1. package main
  2. import "fmt"
  3. const Pi = 3.14
  4. func main() {
  5. const World = "世界"
  6. fmt.Println("Hello", World)
  7. fmt.Println("Happy", Pi, "Day")
  8. const Truth = true
  9. fmt.Println("Go rules?", Truth)
  10. }