我们在实际生产中经常会遇到判断各种为空的情况,那在go中""、nil、len(t) = 0 三种空分别在什么地方下使用的呢,下面我们来看下:
1、"" 一般是判断一个string字符串是否为空
var t string
if t == "" {
fmt.Println("aaaaaa")
}
2、nil 一般是判断结构体的指针是否为空
type Demo struct {
Namestring
Password string
}
func main() {
var d *Demo
if d == nil {
fmt.Println("bbbbb")
}
}
【Go成长之路|go中判断空字符串、nil和len(t)的用法】3、len(t) 一般用于求数组、切片的长度的时候
func main() {
var t []string
if len(t) == 0 {
fmt.Println("ccccc")
}
}
推荐阅读
- Go|Docker后端部署详解(Go+Nginx)
- GO|GO,GO,GO!
- protobuf实例运行proto: cannot use m.ProtoMethods() (type *protoreflect.Message) as type *struct ...解决方案
- go编译tools
- go grpc安装与使用
- goroutine 调度原理
- Go|Go进阶之路——复杂类型
- Go进阶之路——变量