常量是一个简单值的标识符,在程序运行时,不会被修改的量。const identifier [type] = value package mainimport "fmt"func main() { const id string = "a123456" fmt.Print(id)}