golang interface判断为空nil的实现代码


Posted in Golang onApril 24, 2021

要判断interface 空的问题,首先看下其底层实现。

interface 底层结构

根据 interface 是否包含有 method,底层实现上用两种 struct 来表示:iface 和 eface。eface表示不含 method 的 interface 结构,或者叫 empty interface。

对于 Golang 中的大部分数据类型都可以抽象出来 _type 结构,同时针对不同的类型还会有一些其他信息。

1.eface

type eface struct {
    _type *_type
    data  unsafe.Pointer
}
type _type struct {
    size       uintptr // type size
    ptrdata    uintptr // size of memory prefix holding all pointers
    hash       uint32  // hash of type; avoids computation in hash tables
    tflag      tflag   // extra type information flags
    align      uint8   // alignment of variable with this type
    fieldalign uint8   // alignment of struct field with this type
    kind       uint8   // enumeration for C
    alg        *typeAlg  // algorithm table
    gcdata    *byte    // garbage collection data
    str       nameOff  // string form
    ptrToThis typeOff  // type for pointer to this type, may be zero
}

2.iface

iface 表示 non-empty interface 的底层实现。相比于 empty interface,non-empty 要包含一些 method。method 的具体实现存放在 itab.fun 变量里。如果 interface 包含多个 method,这里只有一个 fun 变量怎么存呢?这个下面再细说。

type iface struct {
    tab  *itab
    data unsafe.Pointer
}
// layout of Itab known to compilers
// allocated in non-garbage-collected memory
// Needs to be in sync with
// ../cmd/compile/internal/gc/reflect.go:/^func.dumptypestructs.
type itab struct {
    inter  *interfacetype
    _type  *_type
    link   *itab
    bad    int32
    inhash int32      // has this itab been added to hash?
    fun    [1]uintptr // variable sized
}

概括起来,接口对象由接口表 (interface table) 指针和数据指针组成,或者说由动态类型和动态值组成。

struct Iface
{
    Itab* tab;
    void* data;
};
struct Itab
{
    InterfaceType* inter;
    Type* type;
    void (*fun[])(void);
};

接口表存储元数据信息,包括接口类型、动态类型,以及实现接口的方法指针。无论是反射还是通过接口调用方法,都会用到这些信息。

再来看下nil的定义。

nil的定义

// nil is a predeclared identifier representing the zero value for a pointer, channel, func, interface, map, or slice type.

var nil Type // Type must be a pointer, channel, func, interface, map, or slice type

也就是说,只有pointer, channel, func, interface, map, or slice 这些类型的值才可以是nil.

如何判定interface里面的动态值是否空

对于一个接口的零值就是它的类型和值的部分都是nil。

一个接口值基于它的动态类型被描述为空或非空。

例如,

var w io.Writer

一般情况下,通过使用w==nil或者w!=nil来判读接口值是否为空,只是判断了动态类型,而没有判断动态值。

例如,下面的例子。

package main
import ("fmt")
func main(){
       var a interface{} = nil // tab = nil, data = nil
       var b interface{} = (*int)(nil) // tab 包含 *int 类型信息, data = nil
       fmt.Println(a==nil)
       fmt.Println(b==nil)
}

output:

true

false

上面代码中,接口b的动态类型为*int, 而动态值为nil,直接使用等于号无法判断。

所以不能直接通过与nil比较的方式判断动态值是否为空。

那如何判断动态值是否为空?

可以借助反射来判断。

func IsNil(i interface{}) bool {
    defer func() {
        recover()
    }()
    vi := reflect.ValueOf(i)
    return vi.IsNil()
}

其中,IsNil定义如下:

func (v Value) IsNil() bool

参数v必须是chan, func, interface, map, pointer, or slice,否则会panic。

如果调用IsNil的不是一个指针,会出现异常,需要捕获异常。

或者修改成这样:

func IsNil(i interface{}) bool {
    vi := reflect.ValueOf(i)
    if vi.Kind() == reflect.Ptr {
        return vi.IsNil()
    }
    return false
}

总结

一个接口包括动态类型和动态值。

如果一个接口的动态类型和动态值都为空,则这个接口为空的。

补充:golang返回值为interface{}的类型判断

看标题就知道,这是一个很简单的问题,就一个函数的事,但是,今天一同学golang的几个人中,已经不止一个人问我了,在这里我就说一下,也希望对不清楚的娃有些许帮助,大神别喷,飘过就行了。

大家知道,golang对于不确定返回值可以用interface{}代替,这确实很方便,但是也带来了问题,那就是如何判断返回值是什么类型的?其实可以用反射也就是reflect来判断,通过函数

reflect.TypeOf()

即返回类型!

以上为个人经验,希望能给大家一个参考,也希望大家多多支持三水点靠木。如有错误或未考虑完全的地方,望不吝赐教。

Golang 相关文章推荐
goland 清除所有的默认设置操作
Apr 28 Golang
goland 恢复已更改文件的操作
Apr 28 Golang
解决goland 导入项目后import里的包报红问题
May 06 Golang
Golang中异常处理机制详解
Jun 08 Golang
Golang中channel的原理解读(推荐)
Oct 16 Golang
Go语言基础切片的创建及初始化示例详解
Nov 17 Golang
Golang 对es的操作实例
Apr 20 Golang
Golang并发工具Singleflight
May 06 Golang
Golang实现可重入锁的示例代码
May 25 Golang
Go语言怎么使用变长参数函数
Jul 15 Golang
Go语言测试库testify使用学习
Jul 23 Golang
golang判断key是否在map中的代码
Apr 24 #Golang
Go语言操作数据库及其常规操作的示例代码
Apr 21 #Golang
为什么不建议在go项目中使用init()
Apr 12 #Golang
Golang二维切片初始化的实现
Apr 08 #Golang
go语言map与string的相互转换的实现
Apr 07 #Golang
一文读懂go中semaphore(信号量)源码
Apr 03 #Golang
Go Gin实现文件上传下载的示例代码
Apr 02 #Golang
You might like
将博客园(cnblogs.com)数据导入到wordpress的代码
2013/01/06 PHP
定义php常量的详解
2013/06/09 PHP
详谈PHP文件目录基础操作
2014/11/11 PHP
PHP制作万年历
2015/01/07 PHP
实现WordPress主题侧边栏切换功能的PHP脚本详解
2015/12/14 PHP
php的RSA加密解密算法原理与用法分析
2020/01/23 PHP
用函数式编程技术编写优美的 JavaScript
2006/11/25 Javascript
使用dynatrace-ajax跟踪JavaScript的性能
2010/04/12 Javascript
js限制文本框只能输入数字(正则表达式)
2012/07/15 Javascript
js函数与php函数的区别实例浅析
2015/01/12 Javascript
使用Chrome浏览器调试AngularJS应用的方法
2015/06/18 Javascript
妙用Bootstrap的 popover插件实现校验表单提示功能
2016/08/29 Javascript
通过命令行创建vue项目的方法
2017/07/20 Javascript
js防抖和节流的深入讲解
2018/12/06 Javascript
JS隐藏号码中间4位代码实例
2019/04/09 Javascript
使用Node.js在深度学习中做图片预处理的方法
2019/09/18 Javascript
jquery 键盘事件 keypress() keydown() keyup()用法总结
2019/10/23 jQuery
使用JavaScript获取Django模板指定键值数据
2020/05/27 Javascript
Vue实现手机计算器
2020/08/17 Javascript
如何在selenium中使用js实现定位
2020/08/18 Javascript
Python正则获取、过滤或者替换HTML标签的方法
2016/01/28 Python
快速了解Python开发中的cookie及简单代码示例
2018/01/17 Python
Flask之请求钩子的实现
2018/12/23 Python
python 中的[:-1]和[::-1]的具体使用
2020/02/13 Python
HTML5的结构和语义(5):内嵌媒体
2008/10/17 HTML / CSS
美国在线咖啡、茶和餐厅供应商:LollicupStore
2018/05/04 全球购物
JAVA招聘远程笔试题
2015/07/23 面试题
各营销点岗位职责范本
2014/03/05 职场文书
2014年师德师风学习材料
2014/05/16 职场文书
2014年财务工作总结范文
2014/11/11 职场文书
初中生毕业评语
2014/12/29 职场文书
航班延误投诉信
2015/07/02 职场文书
评奖评优个人先进事迹材料
2015/11/04 职场文书
2016抗战胜利71周年红领巾广播稿
2015/12/18 职场文书
优秀共产党员事迹材料2016
2016/02/29 职场文书
go 实现简易端口扫描的示例
2021/05/22 Golang