Go语言学习(1.1)

程序结构

go语言标识符区分大小写

关键字:共25个

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

一些go内建的常量,变量,函数

Constants:  true  false  iota  nil
Types:  int      int8      int16      int32      int64
        uint     uint8     uint16     uint32     uint64     uintptr
        float32  float64   complex128 compllex64
        bool     byte      rune       string     error
Functions:
make     len      cap    new    append    close
delete   complex  real   image  painc     recover

Go语言通过标识符首字母大小写区分变量可见性:
小写字母开头是 私有变量 ,大写字母开头是 公有变量
camel case:驼峰式命名 eg:"HttpDefaultHandler"

你可能感兴趣的:(Go语言学习(1.1))