Go语言-变量和常量
2021-01-20 08:13
标签:x64 划线 并且 例子 数字 iot 标识 complex als 1.标识符 2.关键字 2.1 25个 关键字 2.2 37个 保留字 Go语言-变量和常量 标签:x64 划线 并且 例子 数字 iot 标识 complex als 原文地址:https://www.cnblogs.com/goodsuperman/p/12902459.html标识符和关键字
在编程语言中标识符就是程序员定义的具有特殊意义的词,比如变量名、常量名、函数名等等。
Go语言中标识符由字母数字和_(下划线)组成,并且只能以字母和_开头。 举几个例子:abc, _, _123, a123。 break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continue for import return var
Constants: true false iota nil
Types: int int8 int16 int32 int64
uint uint8 uint16 uint32 uint64 uintptr
float32 float64 complex128 complex64
bool byte rune string error
Functions: make len cap new append copy close delete
complex real imag
panic recover