dongxinyue2817 2016-06-24 13:29
浏览 64
已采纳

无需重复自己即可在Go中编写界面代码

Suppose I have two pets, a cat named Lucy and a dog named Fido. I have taught them both the same trick, "speak".

In the future I would like to obtain more pets, and teach them different tricks, so in anticipation, I've coded to an interface:

package main                                                                 

import "fmt"                                                                 

type Pet interface {                                                         
        speak() string                                                       
}                                                                            

type Dog struct {                                                            
        speech string                                                        
}                                                                            

type Cat struct {                                                            
        speech string                                                        
}                                                                            

func (c Cat) speak() string {                                                
        return c.speech                                                      
}                                                                            

func (d Dog) speak() string {                                                
        return d.speech                                                      
}                                                                            

func getSpeech(p Pet) string {                                               
        return p.speak()                                                     
}                                                                            

func main() {                                                                
        Fido := Dog{"woof"}                                                  
        Lucy := Cat{"meow"}                                                  

        fmt.Println("Fido says:", getSpeech(Fido)) // Fido says: woof
        fmt.Println("Lucy says:", getSpeech(Lucy)) // Lucy says: meow
} 

Now, although this works well, it seems unnecessarily verbose. I'm clearly repeating myself. Also, assuming all Dogs say "woof" and all Cats say "meow", is it idiomatic to initialize the string inside the struct?

How would you re-factor this code to be more DRY without losing the benefit of an interface?

  • 写回答

2条回答 默认 最新

  • duanpan3166 2016-06-24 14:17
    关注

    You can embed a base type in some cases to delegate common fields and methods. This is not inheritance, it is only a form of automatic delegation via composition. Don't try to use this to create type hierarchies like you would in a java-style OOP language.

    Here you can delegate the speak method to the Speaker type. In practice this is less useful because the Speaker and its methods have no relationship to the struct where they are embedded, i.e. a Speaker doesn't know which type it's speaking for, nor which individual instance.

    https://play.golang.org/p/Bof92jZsNh

    type Speaker struct {
        Saying string
    }
    
    func (s Speaker) speak() string {
        return s.Saying
    }
    
    type Pet interface {
        speak() string
    }
    
    type Dog struct {
        Speaker
    }
    
    type Cat struct {
        Speaker
    }
    
    func getSpeech(p Pet) string {
        return p.speak()
    }
    
    func main() {
        Fido := Dog{Speaker{Saying: "woof"}}
        Lucy := Cat{Speaker{Saying: "meow"}}
    
        fmt.Println("Fido says:", getSpeech(Fido)) // Fido says: woof
        fmt.Println("Lucy says:", getSpeech(Lucy)) // Lucy says: meow
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 BP神经网络控制倒立摆
  • ¥20 要这个数学建模编程的代码 并且能完整允许出来结果 完整的过程和数据的结果
  • ¥15 html5+css和javascript有人可以帮吗?图片要怎么插入代码里面啊
  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算