go const(常量)

常量介绍

示例

go 复制代码
package main

import (
	"fmt"
)

func main() {
	const name = "tom"
	fmt.Println(name)
	const tax float64 = 0.8
	fmt.Println(tax)
}
go 复制代码
go run const.go 
tom
0.8
go 复制代码
package main

import (
	"fmt"
)

func main() {
	const a int
	fmt.Println(a)
}
bash 复制代码
go run const.go 
# command-line-arguments
./const.go:8:8: missing init expr for a
go 复制代码
package main

import (
	"fmt"
)

func getVal() {
	fmt.Printf("测试")
}
func main() {
	const b = 9 / 3
	fmt.Println(b)
	//const c = getVal()
	//fmt.Println(c)
}
bash 复制代码
go run const.go 
3
go 复制代码
package main

import (
	"fmt"
)

func getVal() {
	fmt.Printf("测试")
}
func main() {
	//const b = 9 / 3
	//fmt.Println(b)
	const c = getVal()
	fmt.Println(c)
}
bash 复制代码
go run const.go 
# command-line-arguments
./const.go:13:12: getVal() (no value) used as value
go 复制代码
package main

import (
	"fmt"
)

func getVal() {
	fmt.Printf("测试")
}
func main() {
	//const b = 9 / 3
	//fmt.Println(b)
	//const c = getVal()
	//fmt.Println(c)
	num := 9
	const b = num / 3
	fmt.Println(b)
}
bash 复制代码
go run const.go 
# command-line-arguments
./const.go:16:12: num / 3 (value of type int) is not constant

常量比较简单的写法

go 复制代码
package main

import (
	"fmt"
)

func getVal() {
	fmt.Printf("测试")
}
func main() {
	const (
		a = 1
		b = 2
	)
	fmt.Println(a, b)
	const (
		c = iota
		d
		e
	)
	fmt.Println(c, d, e)
}
bash 复制代码
go run const.go 
1 2
0 1 2
相关推荐
Aomnitrix3 分钟前
知识管理新范式——cpolar+Wiki.js打造企业级分布式知识库
开发语言·javascript·分布式
每天回答3个问题33 分钟前
UE5C++编译遇到MSB3073
开发语言·c++·ue5
伍哥的传说1 小时前
Vite Plugin PWA – 零配置构建现代渐进式Web应用
开发语言·前端·javascript·web app·pwa·service worker·workbox
小莞尔1 小时前
【51单片机】【protues仿真】 基于51单片机八路抢答器系统
c语言·开发语言·单片机·嵌入式硬件·51单片机
我是菜鸟0713号2 小时前
Qt 中 OPC UA 通讯实战
开发语言·qt
JCBP_2 小时前
QT(4)
开发语言·汇编·c++·qt·算法
Brookty2 小时前
【JavaEE】线程安全-内存可见性、指令全排序
java·开发语言·后端·java-ee·线程安全·内存可见性·指令重排序
百锦再2 小时前
[特殊字符] Python在CentOS系统执行深度指南
开发语言·python·plotly·django·centos·virtualenv·pygame
Anson Jiang2 小时前
浏览器标签页管理:使用chrome.tabs API实现新建、切换、抓取内容——Chrome插件开发从入门到精通系列教程06
开发语言·前端·javascript·chrome·ecmascript·chrome devtools·chrome插件
会开花的二叉树2 小时前
继承与组合:C++面向对象的核心
java·开发语言·c++