码迷,mamicode.com
首页 > 其他好文 > 详细

gochang

时间:2020-01-07 13:24:25      阅读:89      评论:0      收藏:0      [点我收藏+]

标签:recover   else   常量   panic   real   进制   别名   ima   port   

Go语言中的常量使用关键字 const 定义,常量类型:布尔型、数字型(整数型、浮点型和复数)和字符串

1、const name [type] = value  (类型说明符 [type]可以省略)

2、使用 const 常量的 iota 来模拟枚举类型

3、%d、%s、%b 、%T (十进制、字符型、二进制、类型别名)

4、类型别名

  1. // 将int取一个别名叫IntAlias
  2. type IntAlias = int

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

 

 

 

 

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 uintptr

gochang

标签:recover   else   常量   panic   real   进制   别名   ima   port   

原文地址:https://www.cnblogs.com/oceanran/p/12160735.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!