记录:感觉很容易写错的坑,代码如下
package main
import (
"fmt"
)
type Iface interface {
Show()
}
type St struct{}
func (st *St) Show() {
}
func test1() Iface {
var st *St
fmt.Printf("st: %q\n", st)
return st
}
func test2() *St {
var st *St
fmt.Printf("st: %q\n", st)
return st
}
func main() {
if v := test1(); v == nil {
fmt.Printf("test1(), nil: %q\n", v)
} else {
fmt.Printf("test1(), not nil: %q\n", v) // 将输出,test1返回的是interface,不为nil
}
if v := test2(); v == nil {
fmt.Printf("test2(), nil: %q\n", v) // 将输出
} else {
fmt.Printf("test2(), not nil: %q\n", v)
}
var st *St
if st == nil {
fmt.Printf("st, nil: %q\n", st) // 将输出
} else {
fmt.Printf("st, not nil: %q\n", st)
}
}
运行结果:
st: %!q(*utils.St=<nil>)
test1(), not nil: %!q(*utils.St=<nil>)
st: %!q(*utils.St=<nil>)
test2(), nil: %!q(*utils.St=<nil>)
st, nil: %!q(*utils.St=<nil>)
代码中返回多实现interface的类型,不能直接使用nil判断,使用断言来判断
有疑问加站长微信联系(非本文作者)