go语言学习笔记(基础语法)2

行分隔符
go一般不用;来分行,一行代表一个语句结束

关键字
break:返回
default :
func: 函数
interface:接口
select:查询
case:
defer:
go:
map : 集合
struct: 结构体
chan:
else :
goto:
pakage: 包
switch:
const :常量
falthrough:
if:
range:
type:
continue :
for :
import
return:
var:

36个预定标识附:
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

你可能感兴趣的:(go语言学习笔记(基础语法)2)