加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2.7.go 777 Bytes
一键复制 编辑 原始数据 按行查看 历史
saber 提交于 2021-10-21 16:12 . go-learning
package main
import (
"fmt"
)
func main(){
//const pi = 3.1415926
//const e = 2.71
const (
pi = 3.1415926
e = 2.71
size = 4
)
var arr [size]int
fmt.Println(arr)
//利用iota模拟枚举
type Weapon int
const(
Arrow Weapon = iota
Shuriken
Sniper_Rifle
Rifle
Blower
)
fmt.Println(Arrow,Shuriken,Sniper_Rifle,Rifle,Blower)
var weapon Weapon = Blower
fmt.Println(weapon)
fmt.Println("\n")
//type Flag int
const(
Flag_None = 1 << iota
Flag_Red
Flag_Green
Flag_Blue
Flag_Block
)
fmt.Printf("%d %d %d %d\n",Flag_Red,Flag_Green,Flag_Blue,Flag_Block)
fmt.Printf("%b %b %b %b\n",Flag_Red,Flag_Green,Flag_Blue,Flag_Block)
//利用枚举得到数字和声明的变量
type Chip_Type int
const(
None_Chip_Type = iota
CPU
GPU
)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化