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条)

报告相同问题?

悬赏问题

  • ¥15 Python时间序列如何拟合疏系数模型
  • ¥15 求学软件的前人们指明方向🥺
  • ¥50 如何增强飞上天的树莓派的热点信号强度,以使得笔记本可以在地面实现远程桌面连接
  • ¥15 MCNP里如何定义多个源?
  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 STM32驱动继电器