了解接口内部的接口(嵌入式接口)

时间:2018-07-01 03:01:37

标签: go go-interface

我试图通过以下代码了解嵌入的接口。

我有以下内容:

type MyprojectV1alpha1Interface interface {
    RESTClient() rest.Interface
    SamplesGetter
}

// SamplesGetter has a method to return a SampleInterface.
// A group's client should implement this interface.
type SamplesGetter interface {
    Samples(namespace string) SampleInterface
}

// SampleInterface has methods to work with Sample resources.
type SampleInterface interface {
    Create(*v1alpha1.Sample) (*v1alpha1.Sample, error)
    Update(*v1alpha1.Sample) (*v1alpha1.Sample, error)
    Delete(name string, options *v1.DeleteOptions) error
    DeleteCollection(options *v1.DeleteOptions, listOptions v1.ListOptions) error
    Get(name string, options v1.GetOptions) (*v1alpha1.Sample, error)
    List(opts v1.ListOptions) (*v1alpha1.SampleList, error)
    Watch(opts v1.ListOptions) (watch.Interface, error)
    Patch(name string, pt types.PatchType, data []byte, subresources ...string) (result *v1alpha1.Sample, err error)
    SampleExpansion
}

现在,如果我有问题:

func returninterface() MyprojectV1alpha1Interface {
//does something and returns me MyprojectV1alpha1Interface
}
temp := returninterface()

现在,从MyprojectV1alpha1Interface中,如果我想调用

  

创建SampleInterface函数

我需要做什么?

另外,请解释一下该接口在Golang中的工作方式。

1 个答案:

答案 0 :(得分:5)

在此定义中:

type MyprojectV1alpha1Interface interface {
    RESTClient() rest.Interface
    SamplesGetter
}

您的MyprojectV1alpha1Interface嵌入了SamplesGetter界面。

将接口嵌入另一个接口意味着可以通过嵌入接口(SamplesGetter)调用嵌入式接口(MyprojectV1alpha1Interface)的所有方法。

这意味着您可以在实现SamplesGetter的任何对象上调用任何MyprojectV1alpha1Interface方法。

因此,一旦在MyprojectV1alpha1Interface变量中获得temp对象,就可以调用Samples方法(使用合适的namespace,我无法从代码中猜到发布):

sampleInt := temp.Samples("namespace here")

sampleInt将具有一个SampleInterface对象,因此您可以使用Create变量来调用sampleInt函数:

sample, err := sampleInt.Create(<you should use a *v1alpha1.Sample here>)

有关接口如何工作的更多详细信息,建议您参考官方规范和示例:

https://golang.org/ref/spec#Interface_types

https://gobyexample.com/interfaces