Golang 各种类型的默认值

前端之家收集整理的这篇文章主要介绍了Golang 各种类型的默认值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Go的基本类型

bool //默认值为false
string //默认值为空字符串
int int8 int16 int32 int64 //默认值为0
uint uint8 uint16 uint32 uint64 uintptr //默认值为0
byte // uint8 的别名
rune // int32 的别名
float32 float64 //默认值为0
complex64 complex128 //默认值为0
原文链接:https://www.f2er.com/go/188561.html

猜你在找的Go相关文章