douming4359 2016-06-05 11:53
浏览 32

如何在golang中实现虚拟功能? [重复]

This question already has an answer here:

How can you implement virtual functions in golang? I tried this, but i can't make it print "B"

type A struct {
}

type B struct {
  A
}

func (self A) myVirtualFunction() {
    fmt.Println("A again :(")
}

func (self A) f() {
    self.myVirtualFunction()
}

func (self B) myVirtualFunction(){
    fmt.Println("B :)")
}

func main() {
    var b *B = new(B)
    b.f()
}

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

</div>
  • 写回答

1条回答 默认 最新

  • douma5954 2016-06-05 13:59
    关注

    use Golang interface methods instead of C++ (pure) virtual functions:
    for the The Go Way to this see package sort:

    type Interface interface {
        // Len is the number of elements in the collection.
        Len() int
        // Less reports whether the element with
        // index i should sort before the element with index j.
        Less(i, j int) bool
        // Swap swaps the elements with indexes i and j.
        Swap(i, j int)
    }
    

    and sample (custom sorting with age):

    package main
    
    import "fmt"
    import "sort"
    
    type Person struct {
        name string
        age  int
    }
    type PS []Person
    
    // Len is part of sort.Interface.
    func (s PS) Len() int {
        return len(s)
    }
    
    // Swap is part of sort.Interface.
    func (s PS) Swap(i, j int) {
        s[i], s[j] = s[j], s[i]
    }
    
    // Less is part of sort.Interface.
    func (s PS) Less(i, j int) bool {
        return s[i].age < s[j].age
    }
    
    func main() {
        s := PS{Person{"Alex", 23}, Person{"Jane", 22}}
        fmt.Println(s) // [{Alex 23} {Jane 22}]
        sort.Sort(s)
        fmt.Println(s) // [{Jane 22} {Alex 23}]
    }
    
    评论

报告相同问题?

悬赏问题

  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥20 测距传感器数据手册i2c