方法集

Posted adba

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了方法集相关的知识,希望对你有一定的参考价值。

golang类型有一个与之相关的方法集,这决定了它是否实现某个接口
  • 类型T方法集包含所有reciver T方法
  • 类型*T方法集包含所有receiver T+*T方法
  • 匿名嵌入S,则T方法集包含所有receiver S方法
  • 匿名嵌入*S,则T方法集包含所有receiver S+*S方法
  • 匿名嵌入S或*S,则*T方法集包含所有receiver S+*S方法

 

package main

import "fmt"

type tester interface {
        tVal()
        tPtr()
}

type T2 struct {
        *S
}

type T1 struct {
        S
}

type S struct {
}

func (p *S) tPtr() { fmt.Printf("caller‘s type is: %#T\n", p) }

func (v S) tVal() { fmt.Printf("caller‘s type is: %#T\n", v) }

func main() {
        var t tester

        s := S{}

        //type S include method tVal(receiver S) but not tPtr(receiver *S)
        //t = s

        //type *S include method tVal and tPtr
        t = &s
        t.tPtr()
        t.tVal()

        //type T1 with annonymous S embedded, include method tVal but not tPtr
        //d := T1{S{}}
        //t = d

        //type T2 with annonymous *S embedded, include method tVal and tPtr
        d1 := T2{&S{}}
        t = d1
        t.tPtr()
        t.tVal()

        //type *T1 with annonymous S embedded, include method tVal and tPtr
        d2 := &T1{S{}}
        t = d2
        t.tPtr()
        t.tVal()

        //type *T2 with annonymous *S embedded, include method tVal and tPtr
        d3 := &T2{&S{}}
        t = d3
        t.tPtr()
        t.tVal()
}

  

以上是关于方法集的主要内容,如果未能解决你的问题,请参考以下文章

第九次作业

pandas GroupBy上的方法apply:一般性的“拆分-应用-合并”

如何解析 MPD 清单视频文件并获取图像适配集的片段?

VSCode自定义代码片段—— 数组的响应式方法

VSCode自定义代码片段10—— 数组的响应式方法

201621123054《Java程序设计》第九周学习总结