来源:自学PHP网 时间:2019-08-07 16:47 作者:小飞侠 阅读:次
[导读] 初步解读Golang中的接口相关编写方法...
概述 接口的定义和使用 比如
复制代码 代码如下:
type I interface{ Get() int Put(int) } 这段话就定义了一个接口,它包含两个函数Get和Put 好了,我的一个接口实现了这个接口:
复制代码 代码如下:
type S struct {val int} func (this *S) Get int { return this.val } func (this *S)Put(v int) { this.val = v } 这个结构S就是实现了接口I Go中interface的写法 下面看几个interface的例子:
复制代码 代码如下:
func SomeFunction(w interface{Write(string)}){ 这个例子中,直接将interface定义在参数中,很特别…
复制代码 代码如下:
func weirdFunc( i int ) interface{} { if i == 0 { return "zero" } return i; } 接口赋值 我们可以将一个实现接口的对象实例赋值给接口,也可以将另外一个接口赋值给接口。 (1)通过对象实例赋值 将一个对象实例赋值给一个接口之前,要保证该对象实现了接口的所有方法。考虑如下示例:
复制代码 代码如下:
type Integer int func (a Integer) Less(b Integer) bool { return a < b } func (a *Integer) Add(b Integer) { *a += b } type LessAdder interface { var a Integer = 1 b2的赋值会报编译错误,为什么呢?还记得<类型方法>一章中讨论的Go语言规范的规定吗? The method set of any other named type T consists of all methods with receiver type T. The method set of the corresponding pointer type T is the set of all methods with receiver T or T (that is, it also contains the method set of T). (2)通过接口赋值
复制代码 代码如下:
var r io.Reader = new(os.File) var rw2 io.ReadWriter = new(os.File) 因为r没有Write方法,所以不能赋值给rw。 接口嵌套
复制代码 代码如下:
// ReadWriter is the interface that groups the basic Read and Write methods. 该接口嵌套了io.Reader和io.Writer两个接口,实际上,它等同于下面的写法:
复制代码 代码如下:
type ReadWriter interface { 注意,Go语言中的接口不能递归嵌套,
复制代码 代码如下:
// illegal: Bad cannot embed itself // illegal: Bad1 cannot embed itself using Bad2 空接口(empty interface)
复制代码 代码如下:
interface{}
在Go语言中,所有其它数据类型都实现了空接口。
复制代码 代码如下:
var v1 interface{} = 1 如果函数打算接收任何数据类型,则可以将参考声明为interface{}。最典型的例子就是标准库fmt包中的Print和Fprint系列的函数:
复制代码 代码如下:
func Fprint(w io.Writer, a ...interface{}) (n int, err error) 注意,[]T不能直接赋值给[]interface{}
复制代码 代码如下:
t := []int{1, 2, 3, 4} 编译时会输出下面的错误: cannot use t (type []int) as type []interface {} in assignment 我们必须通过下面这种方式:
复制代码 代码如下:
t := []int{1, 2, 3, 4} |
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习
京ICP备14009008号-1@版权所有www.zixuephp.com
网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com