go interface 使用

简介: go interface 使用

初学者可以 简单的将 interface当做一种 可变的数据类型

即 所有实现了 interface 所有方法的函数都可以 保存到 interface 中,

由于 interface{} 一个函数都没有实现,所以所有的函数都可以用 interface{} 类型来表示


类似 c 的void *

嵌入 interface

类似结构体的引用其他结构体

接口也可以引用其他的接口

type heap  interface {
        sort.Interface //嵌入字段sort.Interface
        Push(x interface{}) //a Push method to push elements into the heap
        Pop() interface{} //a Pop elements that pops elements from the heap
}


io.ReadWriter 中的实际代码。 即 接口 ReadWriter 由 Reader Writer 构成

// io.ReadWriter
type ReadWriter interface {
        Reader
        Writer
}







相关文章
|
6月前
|
Go
|
3月前
|
JSON 人工智能 编译器
Go json 能否解码到一个 interface 类型的值
Go json 能否解码到一个 interface 类型的值
30 1
|
3月前
|
Go
Go - struct{} 实现 interface{}
Go - struct{} 实现 interface{}
39 9
|
Go
Go语言学习之 interface
Go语言学习之 interface
35 0
|
Go
go的interface怎么实现的?
面试题:go的interface怎么实现的?
96 0
|
存储 缓存 Go
如何用好 Go interface
The bigger the interface, the weaker the abstraction.
88 0
Go Interface 合法验证
- 值方法集和接口匹配 - 给接口变量赋值的不管是值还是指针对象,都ok,因为都包含值方法集 - 指针方法集和接口匹配 - 只能将指针对象赋值给接口变量,因为只有指针方法集和接口匹配 - 如果将值对象赋值给接口变量,会在编译期报错(会触发接口合理性检查机制)
|
Go Android开发 Python
实证与虚无,抽象和具象,Go lang1.18入门精炼教程,由白丁入鸿儒,Go lang接口(interface)的使用EP08
看到接口这两个字,我们一定会联想到面向接口编程。说白了就是接口指定执行对象的具体行为,也就是接口表示让执行对象具体应该做什么,所以,普遍意义上讲,接口是抽象的,而实际执行行为,则是具象的。
实证与虚无,抽象和具象,Go lang1.18入门精炼教程,由白丁入鸿儒,Go lang接口(interface)的使用EP08
|
Go
go语言中的interface
go语言中的interface
81 0
|
存储 Java Go
速学Go语言接口interface
速学Go语言接口interface