Golang中面向对象编程的继承机制解析

Zuozuohao · · 2043 次点击
Zuozuohao
偏见会遮蔽双眼
好的,谢谢。看了Go的继承机制拓展了我关于代码复用的认识,继承不仅可以表示成“我是谁”,还可以表示为“我能干什么”。
#3
更多评论
polaris
社区,需要你我一同完善!
介绍 go 面向对象挺全面的文章
#1
go只能通过接口实现继承,这个和传统的面向对象设计有很大差异。具体可以研究一下Frank Schmager写的Go设计模式《Evaluating the Go Programming Language with Design Patterns》。
#2