系统保留关键字

break //退出循环
default //选择结构默认项(switch、select)
func //定义函数
interface //定义接口
select //channel
case //选择结构标签
chan //定义channel
const //常量
continue //跳过本次循环
defer //延迟执行内容(收尾工作)
go //并发执行
map //map类型
struct //定义结构体
else //选择结构
goto //跳转语句
package //包
switch //选择结构
fallthrough //switch 中 继续向下执行
if //选择结构
range //从slice、map等结构中取元素
type //定义类型
for //循环
import //导入包
return //返回
var //定义变量

预定义标识符

append bool byte cap close
complex complex64 complex128 uint16 copy
false float32 float64 imag int
int8 int16 uint32 int32 int64
iota len make new nil
panic uint64 print println real
recover string true uint uint8
uintptr