当前位置:网站首页>Go从入门到实战——接口(笔记)
Go从入门到实战——接口(笔记)
2022-06-27 19:22:00 【积淀 ytu】
Java接口
Go接口
type Mover interface {
move()
}
type dog struct {
}
func (d dog) move() {
fmt.Println("狗会动")
}
func main() {
var x Mover
var wangcai = dog{
} // 旺财是dog类型
x = wangcai // x可以接收dog类型
var fugui = &dog{
} // 富贵是*dog类型
x = fugui // x可以接收*dog类型
x.move()
}
从上面的代码中我们可以发现,使用值接收者实现接口之后,不管是dog结构体还是结构体指针*dog类型的变量都可以赋值给该接口变量。因为Go语言中有对指针类型变量求值的语法糖,dog指针 fugui
内部会自动求值*fugui
func (d *dog) move() {
fmt.Println("狗会动")
}
func main() {
var x Mover
var wangcai = dog{
} // 旺财是dog类型
x = wangcai // x不可以接收dog类型
var fugui = &dog{
} // 富贵是*dog类型
x = fugui // x可以接收*dog类型
}
此时实现Mover接口的是*dog
类型,所以不能给x传入dog类型的wangcai,此时x只能存储*dog
类型的值。
接口变量
自定义类型
边栏推荐
- Acwing周赛57-数字操作-(思维+分解质因数)
- 行业案例|从零售之王看银行数字化转型的运营之道
- 非常全面的DolphinScheduler(海豚调度)安装使用文档
- Industry case | see the operation of bank digital transformation from the king of retail
- SQL Server for循环用法
- 本周二晚19:00战码先锋第8期直播丨如何多方位参与OpenHarmony开源贡献
- SQL必需掌握的100个重要知识点:使用函数处理数据
- Unity3d button adapts the size according to the text content
- 银河麒麟系统局域网文件共享教程
- Release of global Unicorn list in 2021: the full list of 301 Unicorn enterprises in China is coming!
猜你喜欢
Go从入门到实战——Context与任务取消(笔记)
ICML2022 | 可扩展深度高斯马尔可夫随机场
SQL必需掌握的100个重要知识点:使用函数处理数据
"Good voice" has been singing for 10 years. How can the Chinese language in the starry sky sing well in HKEx?
KDD 2022 | graph neural network generalization framework under the paradigm of "pre training, prompting and fine tuning"
SQL必需掌握的100个重要知识点:排序检索数据
Wechat applet based service management system for college party members' Home System applet graduation design, Party members, activists, learning, punch in, forum
How to participate in openharmony code contribution
DO280OpenShift访问控制--security policy和章节实验
Flexible IP network test tool -- x-launch
随机推荐
"Good voice" has been singing for 10 years. How can the Chinese language in the starry sky sing well in HKEx?
MySQL Express - day 1 - basic introduction
Codeforces Round #721 (Div. 2)
VMware vSphere esxi 7.0 installation tutorial
ABC-Teleporter Setting-(思维+最短路)
TreeSet详解
100 important knowledge points that SQL must master: creating calculation fields
SQL Server for循环用法
系统自带的karsonzhang/fastadmin-addons报错
After being forced to develop the app within 20 days, the group was laid off, and the technical director angrily criticized it: I wish "closure as soon as possible!"
KDD 2022 | graph neural network generalization framework under the paradigm of "pre training, prompting and fine tuning"
释放开源数据库创新力量 | 【甘肃】openGauss Meetup圆满结束
ARCS模型介绍
Unity3d button adapts the size according to the text content
原创翻译 | 机器学习模型服务工具对比:KServe,Seldon Core和BentoML
Shell script controls the startup and shutdown of services - with detailed cases
Cortical traceability analysis of ERP
squid代理服务器
Focus! Tips for installing fonts on domestic computers
于文文、胡夏等明星带你玩转派对 皮皮APP点燃你的夏日