“new” 应用于接口的含义是什么?

huangapple go评论87阅读模式
英文:

What does new applied to an interface mean?

问题

我理解,如果T是一个结构体,那么这相当于创建一个空的结构体(有意义的空值):

t := new(T)

然而,给定以下代码片段:

type Burper interface {burp() int}

b := new(Burper)

创建了什么,以及使用new创建接口的用途是什么?

英文:

I understand that if T is a struct, then this amounts to creating an empty struct (sensible empty values)::

t := new(T)

However, given the following snippet::

type Burper interface {burp() int}       
                             
b := new(Burper)

What is created & what is the usefulness of new'ing an interface ?

答案1

得分: 7

这只是创建了一个指向Burper接口的指针。由于几乎没有合理的用途来指向一个接口,这在Go语言中是有效的,但在实践中是无害且无用的。

b是一个指针,指向Burper的零值,即nil。

请参考http://play.golang.org/p/r6h8KiA9pa。

英文:

This just creates a pointer to a Burper (which is an interface). As there is (almost) no sensible use for a pointer to an interface this is valid Go, harmless and useless in practice.

b is a pointer and points to the zero value of Burper which is nil.

See http://play.golang.org/p/r6h8KiA9pa

huangapple
  • 本文由 发表于 2014年2月27日 03:16:28
  • 转载请务必保留本文链接:https://go.coder-hub.com/22051043.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定