博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go学习笔记(03)-基本语法-数据类型
阅读量:6153 次
发布时间:2019-06-21

本文共 466 字,大约阅读时间需要 1 分钟。

数据类型

分类

  • 布尔:bool
    • true or false
  • 整型:int/uint 根据平台可能为32位或64位
  • 8位整型:int8/uint8
  • 字节:byte(uint8别名)
  • 16位整型:int16/uint16
  • 32位整型:int32/uint32
  • rune(int32别名)
  • 64位整型:int64/uint64
  • 浮点:float32/float64
  • 复数:complex64/complex128
  • 足够保存指针的32和64位整型:uintptr 根据平台可能为32位或64位
  • 其它类型:
    • array, struct, string
  • 引用类型:
    • slice, map, chan
  • 接口:interface
  • 函数:func

类型零值

零值其实就是变量被声明为某一类型后的默认值,值类型为0,bool为false,string为""

类型别名

type (    type1 float32    type2 string)

转载于:https://www.cnblogs.com/doit2015/p/4264807.html

你可能感兴趣的文章
js中var、let、const的区别
查看>>
简洁优雅地实现夜间模式
查看>>
react学习总结
查看>>
在soapui上踩过的坑
查看>>
MySQL的字符集和字符编码笔记
查看>>
ntpd同步时间
查看>>
must implement java.io.Serializable hessian
查看>>
Microsoft Licenses Flash Lite for Windows Mobile Users
查看>>
HDOJ 2020 绝对值排序
查看>>
HDOJ/HDU 2560 Buildings(嗯~水题)
查看>>
Maven编译时跳过Test
查看>>
Spring Boot 整合Spring Security 和Swagger2 遇到的问题小结
查看>>
[20170628]12C ORA-54032.txt
查看>>
让div固定在某个位置
查看>>
Java开发环境Docker镜像
查看>>
从无到有,WebService Apache Axis2初步实践
查看>>
UIKit框架(15)PCH头文件
查看>>
整理看到的好的文档
查看>>
Linux磁盘管理和文件系统管理
查看>>
linux运维人员的成功面试总结案例分享
查看>>