1 Star 0 Fork 0

dl615/gotest

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
interface2.go 647 Bytes
一键复制 编辑 原始数据 按行查看 历史
dilei 提交于 2019-09-05 19:58 . add exp
package main
import (
"fmt"
"reflect"
)
type State struct{}
func testnil1(a, b interface{}) bool {
fmt.Println(a)
return a == b
}
func testnil2(a *State, b interface{}) bool {
fmt.Println(a)
return a == b
}
func testnil3(a interface{}) bool {
fmt.Println(a)
return a == nil
}
func testnil4(a *State) bool {
fmt.Println(a)
return a == nil
}
func testnil5(a interface{}) (bool, bool) {
fmt.Println(a)
v := reflect.ValueOf(a)
return !v.IsValid(), v.IsNil()
}
func main() {
var a *State
fmt.Println(testnil1(a, nil))
fmt.Println(testnil2(a, nil))
fmt.Println(testnil3(a))
fmt.Println(testnil4(a))
fmt.Println(testnil5(a))
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dl615/gotest.git
git@gitee.com:dl615/gotest.git
dl615
gotest
gotest
master

搜索帮助