美文网首页工作生活
go的保留字以及关键字

go的保留字以及关键字

作者: 魔法时刻 | 来源:发表于2019-06-30 08:43 被阅读0次

    在Go中,为了简化代码编译过程中对代码的解析,其定义的保留关键字只有25个。详见如下:

    1 2 3 4 5
    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

    除了保留关键字外,外另还提供了36个预定的标识符,其包括基础数据类型和系统内嵌函数。

    1 2 3 4 5 6
    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 uintp

    相关文章

      网友评论

        本文标题:go的保留字以及关键字

        本文链接:https://www.haomeiwen.com/subject/mxuvcctx.html