登录
go接口
已收录文章:1篇
三天内
三天内
一周内
一月内
三月内
最新
最热
Golang
·
Go教程
| 1年前 |
查询
·
go接口
·
golang
go语言实现接口查询
一句话总结:如果接口A实现了接口B中所有方法,那么A可以转化为B接口。 package options type IPeople interface { GetName() string } type IPeople2 interface { GetName() string GetAge() int } package main import ( "fmt" "opt
230
收藏