golang interface
接口定义
Interface类型可以定义一组方法,但是这些不需要实现。并且interface不能 包含任何变量。
type Interface interface {
test1(a, b int) bool
test2()
}
interface类型默认是一个指针。
空接口(a interface{})可以被任何类型所实现,如动物可以被猫、狗、人等实现,反之人不一定能实现动物
func main() {
var a interface{} var b int
a = b fmt.Printf("%T\n", a) var s string
a = s fmt.Printf("%T", a)
}
接口只是一种规范,并没有实现,不能直接调用
type testInterface int func (t testInterface) test1(a, b int) bool {
return a < b
} func (t testInterface) test2() {
fmt.Println("test2")
} func main() {
var a Interface
a.test2()
}
接口实现
Golang中的接口,不需要显示的实现。只要一个变量,含有接口类型中的所有方法,那么这个变量就实现这个接口。因此,golang中没有implement 类似的关键字。
type testInterface int func (t testInterface) test1(a, b int) bool {
return a < b
} func (t testInterface) test2() {
fmt.Println("test2")
} func main() {
var a testInterface
fmt.Printf("%T\n", a.test1(1, 2))
a.test2()
}
接口实现时需要实现规范内的所有方法,否则会报错
type Interface interface {
test1(a, b int) bool
test2()
} type testInterface int func (t testInterface) test1(a, b int) bool {
return a < b
} func main() {
var test testInterface
var i Interface i = test fmt.Println(test) }
cannot use test (type testInterface) as type Interface in assignment:
testInterface does not implement Interface (missing test2 method)
如果一个变量含有了多个interface类型的方法,那么这个变量就实现了多个 接口。
type human interface { //人类
get_country() //国家
} type lang interface {
speek() //语言
} type chinesePeople struct { //中国人
country string
} func (c chinesePeople) get_country() {
fmt.Println(c.country)
} type japanese struct { //日本人
country string
} func (c japanese) get_country() {
fmt.Println(c.country)
} func (c japanese) speek() { //说的语言
fmt.Println("ハロー")
} func main() { var c = chinesePeople{
country: "china",
} var j = japanese{
country: "japan",
}
var h human
var langage lang h = c h.get_country() langage = j
h = j
h.get_country()
langage.speek()
}
japanese结构体实现了两个接口
chinese结构体实现了country接口如果使用lang赋值会提示未实现该接口
cannot use c (type chinesePeople) as type lang in assignment:
chinesePeople does not implement lang (missing speek method)
接口嵌套
一个接口可以嵌套在另外的接口
package main type human interface {
run()
eyes()
} type info interface {
country()
sex()
} type chinesePeople interface {
human
info
} func main() { }
类型断言
接口是一般类型,不知道具体类型,如果要转成具体类型
语法
目标类型 := x.(t)
目标类型,布尔值 := x.(t)
两者区别为,安全类型与不安全类断言,非安全类型如果判定失败,这个操作会抛出panic
如:
var i interface{}
i = 10
j := i.(string)
fmt.Printf("%T\n", j)
断言的操作对象x是一个nil接口值,那么不论被断言的类型T是什么这个类型断言都会失败。
var i interface{}
i = nil
j := i.(nil)
安全类型的断言
t, ok := i.(int)
if ok == false {
fmt.Printf("失败,断言的类型为%T,而i的类型为%T", t, i)
os.Exit(1)
} fmt.Printf("成功%T", t)
golang interface的更多相关文章
- Golang Interface 解析
转自 https://zhuanlan.zhihu.com/p/27652856 先看一段代码: 123456789101112 func (x interface{}) { if x == nil ...
- golang:interface{}类型测试
在golang中空的interface即interface{}可以看作任意类型, 即C中的void *. 对interface{}进行类型测试有2种语法: 1. Comma-ok断言: value, ...
- 工作随笔——Golang interface 转换成其他类型
新的公司,新的氛围.一年了,打算写点什么.so,那就写google的golang语言吧. 最最最基础的语法结构见go语言菜鸟教程 接下来写点菜鸟教程没有的. go语言的设计者认为:go语言必须让程序员 ...
- golang interface判断为空nil
要判断interface 空的问题,首先看下其底层实现. interface 底层结构 根据 interface 是否包含有 method,底层实现上用两种 struct 来表示:iface 和 ef ...
- 浅析 golang interface 实现原理
interface 在 golang 中是一个非常重要的特性.它相对于其它语言有很多优势: duck typing.大多数的静态语言需要显示的声明类型的继承关系.而 golang 通过 interfa ...
- golang interface 多态
原文链接:http://www.52bd.net/code/210.html demo: package main import ( "fmt" ) //通知行为的接口 type ...
- golang interface 类型学习
接口类型变量的内存结构 动态类型 动态值 对于动态类型指的是当其他非接口类型变量赋值给接口类型变量时,接口类型变量中的动态类型就是当前非接口类型 对于动态值指的就是当其他非接口类型变量赋值给接口类型变 ...
- golang interface类型转string等其他类型
inter 是interface类型,转化为string类型是: str := inter .(string) 转为其他类型也类似
- golang interface 转 string,int,float64
func interface2String(inter interface{}) { switch inter.(type) { case string: fmt.Println("stri ...
随机推荐
- Linux block(1k) block(4k) 换算 gb
输入 df 显示1k blocks 大小 再输入 df -h 显示 gb换算大小 结论 block(1k) 计算公式为: block(1k) /1024/1000 = xx gb ...
- 【支付宝】支付 系统繁忙,请稍后再试(ALIN10146)
https://openclub.alipay.com/read.php?tid=6918&fid=60 我碰到的是这个问题导致 把signType 改为 RSA2 改成
- BZOJ2961 共点圆[CDQ分治]
题面 bzoj 其实就是推一下圆的式子 长成这个样子 假设要查询的点是(x, y) 某个圆心是(p, q) \((x - p)^2 + (y - q)^2 \leq p^2 + q^2\) 变成 \( ...
- Linux 检查端口gps命令
由于是游戏业务,环境主要是Nginx+Tomcat+Java Program gps脚本环境以及效果图如下: #!/bin/bash function Printf (){ == ];then pri ...
- LOJ# 572. 「LibreOJ Round #11」Misaka Network 与求和(min25筛,杜教筛,莫比乌斯反演)
题意 求 \[ \sum_{i = 1}^{n} \sum_{i = 1}^{n} f(\gcd(i, j))^k \pmod {2^{32}} \] 其中 \(f(x)\) 为 \(x\) 的次大质 ...
- [JLOI2016/SHOI2016]侦察守卫(树形dp)
小R和B神正在玩一款游戏.这款游戏的地图由N个点和N-1条无向边组成,每条无向边连接两个点,且地图是连通的.换句话说,游戏的地图是一棵有N个节点的树. 游戏中有一种道具叫做侦查守卫,当一名玩家在一个点 ...
- ACM-ICPC 2018 焦作赛区网络预赛 G. Give Candies (打表找规律+快速幂)
题目链接:https://nanti.jisuanke.com/t/31716 题目大意:有n个孩子和n个糖果,现在让n个孩子排成一列,一个一个发糖果,每个孩子随机挑选x个糖果给他,x>=1,直 ...
- 洛谷P1848 书架
好,我一直以为书架是splay,然后发现还有个优化DP的书架.妃的书架 蓝书和PPT上面都讲了,应该比较经典吧. 题意: 有n个物品,每个都有宽,高. 把它们分成若干段,使得每段的最大值的总和最小.且 ...
- 关于ComponentName组件名称的使用
ComponentName,顾名思义,就是组件名称,通过调用Intent中的setComponent方法,我们可以打开另外一个应用中的Activity或者服务. 实例化一个ComponentName需 ...
- jquery 获取$("#id").text()里面的值 需要进行去空格去换行符操作
Jquery:$("#accuracy").val($("#accuracy").val().replace(/\ +/g,""));//去 ...