Go语言-变量和常量

Posted goodsuperman

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go语言-变量和常量相关的知识,希望对你有一定的参考价值。

标识符和关键字

1.标识符

在编程语言中标识符就是程序员定义的具有特殊意义的词,比如变量名、常量名、函数名等等。
Go语言中标识符由字母数字和_(下划线)组成,并且只能以字母和_开头。 举几个例子:abc, _, _123, a123。

2.关键字

2.1  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

2.2 37个 保留字

  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

 

以上是关于Go语言-变量和常量的主要内容,如果未能解决你的问题,请参考以下文章

Go语言 变量和常量

Go语言常量和变量

Go语言常量和变量

Go语言-变量和常量

Go语言-变量和常量

Go语言基础变量和常量