drls2738 2016-10-25 14:03
浏览 42
已采纳

如何在Golang中保持代码DRY

EDIT++:

How to not to repeat my code in Go?

type Animal interface {
    Kingdom() string
    Phylum() string
    Family() string
}

type Wolf struct {}
type Tiger struct {}

func (w Wolf) Kingdom() string {return "Animalia"}
func (w Wolf) Phylum() string {return "Chordata"}
func (w Wolf) Family() string {return "Canidae"}

I implemented a three methods for Wolf type and I need to implement all the methods for Tiger type to implement the interface. But Kingdom and Phylum methods are the same for both types. Is it somehow possible to implement only Family method for Tiger type:

func (t Tiger) Family() string {return "Felidae"}

and not to repeat all the three methods for each type?

Disclaimer

Please don't be confused with simple string returns in the methods, in a real case I need different method implementations not just pre-defined values. Using this silly style I want to avoid of defiling your brains. So skip methods at all is not the way. Thanks

  • 写回答

3条回答 默认 最新

  • duanhong1985 2016-10-25 14:10
    关注

    This is classical composition:

    type Wolf struct {
        Animalia
        Chordata
        Canidae
    }
    type Tiger struct {
        Animalia
        Chordata
        Felidae
    }
    
    type Animalia struct{}
    
    func (Animalia) Kingdom() string { return "Animalia" }
    
    type Chordata struct{}
    
    func (Chordata) Phylum() string { return "Chordata" }
    
    type Canidae struct{}
    
    func (Canidae) Family() string { return "Canidae" }
    
    type Felidae struct{}
    
    func (Felidae) Family() string { return "Felidae" }
    
    func main() {
        w := Wolf{}
        t := Tiger{}
        fmt.Println(w.Kingdom(), w.Phylum(), w.Family())
        fmt.Println(t.Kingdom(), t.Phylum(), t.Family())
    }
    

    Playground: https://play.golang.org/p/Jp22N2IuHL.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 simulink单相桥式整流电路
  • ¥35 问问51单片机流水灯的代码该怎么写
  • ¥15 关于#百度#的问题:感觉已经将字体段落、字体、页边距、纸张大小、文档网络调成与论文模板一致,为什么黄色部分字体左右的间距还是不一样啊,求私信发文件接收看一下
  • ¥15 stata webuse报错
  • ¥15 TypeError: Cannot read properties of undefined (reading 'status')
  • ¥15 如何利用AI去除图片中的竹架子
  • ¥15 python 写个基金爬取的代码,自动卖出功能
  • ¥15 Linux系统启动不起来
  • ¥15 为什么运行仿真数码管不亮(语言-c语言)
  • ¥15 陈仁良《直升机飞行动力学》小扰动线化方程如何推导