加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

golang(* interface {})(nil)是否为零?

发布时间:2020-12-16 19:03:11 所属栏目:大数据 来源:网络整理
导读:代码段如下: package mainimport ( "fmt" "reflect")func main() { a := (*interface{})(nil) fmt.Println(reflect.TypeOf(a),reflect.ValueOf(a)) var b interface{} = (*interface{})(nil) fmt.Println(reflect.TypeOf(b),reflect.ValueOf(b)) fmt.Printl
代码段如下:
package main

import (
    "fmt"
    "reflect"
)

func main() {
    a := (*interface{})(nil)
    fmt.Println(reflect.TypeOf(a),reflect.ValueOf(a))
    var b interface{} = (*interface{})(nil)
    fmt.Println(reflect.TypeOf(b),reflect.ValueOf(b))
    fmt.Println(a == nil,b == nil)
}

输出如下:

*interface {} <nil>
*interface {} <nil>
true false

所以var interface {}不同于:=,为什么?

根据 golang faq

Under the covers,interfaces are implemented as two elements,a type and a value. The value,called the interface’s dynamic value,is an arbitrary concrete value and the type is that of the value. For the int value 3,an interface value contains,schematically,(int,3).

An interface value is nil only if the inner value and type are both unset,(nil,nil). In particular,a nil interface will always hold a nil type. If we store a nil pointer of type *int inside an interface value,the inner type will be *int regardless of the value of the pointer: (*int,nil). Such an interface value will therefore be non-nil even when the pointer inside is nil.

a:=(* interface {})(nil)等于var a * interface {} = nil.

但是var b interface {} =(* interface {})(nil),mean b是type interface {},而interface {}变量只有nil,当它的类型和值都是nil时,显然type * interface {}不是nil .

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读