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

概述代码段如下: package mainimport ( "fmt" "reflect")func main() { a := (*interface{})(nil) fmt.Println(reflect.TypeOf(a), reflect.ValueOf(a)) var b interface{} = (*interface{})(nil) 代码段如下:
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.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 .

总结

以上是内存溢出为你收集整理的golang(* interface {})(nil)是否为零?全部内容,希望文章能够帮你解决golang(* interface {})(nil)是否为零?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1293721.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存