package mainimport "fmt"const( I = 1 J = 2 K = 3)func main() { const length int = 10 fmt.Println(length) //length=100 常量不允许修改的}