实现一个包含结构体的接口。

huangapple go评论104阅读模式
英文:

Implementation of an interface which contains a struct

问题

我对Go语言中的类型集有些困惑。在Go 1.18之后,Go支持在接口中嵌入结构体。例如,下面的代码是合法的Go代码:

  1. type ABCInterface interface {
  2. ABC
  3. }
  4. type ABC struct {
  5. A, B, C int
  6. }

我的问题是,如何实例化一个满足ABCInterface接口的对象?

我尝试创建ABC的实例,但它不是ABCInterface类型的。
我还定义了一个新的结构体:

  1. type ABCImpl struct {
  2. ABC
  3. }

但这也不是ABCInterface的实现。

英文:

I am bit confused about how the typesets in go work. Post Go 1.18, go supports embedding structs inside an interface. For instance, this is perfectly valid go code :

  1. type ABCInterface interface {
  2. ABC
  3. }
  4. type ABC struct {
  5. A, B, C int
  6. }

My question is how do I instantiate an object which satisfies the ABCInterface?

I tried creating instance of ABC but that is not of type ABCInterface.
I also defined a new struct

  1. type ABCImpl struct {
  2. ABC
  3. }

but this is not an implementation of ABCInterface as well.

答案1

得分: 2

在Go语言中,接口是一组方法签名,用于定义结构体(或类型)必须遵循的行为。当一个结构体实现了接口指定的所有方法时,就称为满足或实现了该接口。

在你的情况下,假设你想要一个实现Sum方法的接口。要实现该接口,你可以按照以下方式添加监听器:

  1. package main
  2. import "log"
  3. // ABCInterface 提供了一个包含 Sum 方法的类型的蓝图。
  4. type ABCInterface interface {
  5. Sum() int
  6. }
  7. // ABC 是表示 A、B 和 C 值的类型。
  8. type ABC struct {
  9. A, B, C int
  10. }
  11. // ABCImpl 是继承 ABC 字段并实现 ABCInterface 的类型。
  12. type ABCImpl struct {
  13. ABC
  14. }
  15. // Sum 计算 A、B 和 C 的和并返回结果。
  16. func (a ABCImpl) Sum() int {
  17. return a.C + a.A + a.B
  18. }
  19. func main() {
  20. // 创建 ABCImpl 的实例。
  21. trialValue := ABCImpl{
  22. ABC: ABC{
  23. A: 1,
  24. B: 2,
  25. C: 3,
  26. },
  27. }
  28. // 调用 trialValue 实例的 Sum 方法并打印结果。
  29. log.Println(trialValue.Sum())
  30. }

你也可以省略 ABC 结构体,直接使用以下方式定义 ABCImpl

  1. type ABCImpl struct {
  2. A, B, C int
  3. }

希望对你有帮助!

英文:

In Go, an interface is a set of method signatures that define the behavior that a struct (or type) must adhere to. When a struct implements all the methods specified by an interface, it is said to satisfy or implement that interface.

In your case, let's consider that you want an interface that implements a Sum method. To implement the interface, you'll add the listener as follows:

  1. package main
  2. import "log"
  3. // ABCInterface provides a blueprint for types that include the Sum method.
  4. type ABCInterface interface {
  5. Sum() int
  6. }
  7. // ABC is a type that represents values of A, B, and C.
  8. type ABC struct {
  9. A, B, C int
  10. }
  11. // ABCImpl is a type that inherits fields from ABC and implements ABCInterface.
  12. type ABCImpl struct {
  13. ABC
  14. }
  15. //You could eliminate the `ABC` struct and simply use
  16. type ABCImpl struct {
  17. A,B,C int
  18. }
  19. // Sum calculates the sum of A, B, and C and returns the result.
  20. func (a ABCImpl) Sum() int {
  21. return a.C + a.A + a.B
  22. }
  23. func main() {
  24. // Create an instance of ABCImpl.
  25. trialValue := ABCImpl{
  26. ABC: ABC{
  27. A: 1,
  28. B: 2,
  29. C: 3,
  30. },
  31. }
  32. // Call the Sum method on the trialValue instance and print the result.
  33. log.Println(trialValue.Sum())
  34. }

huangapple
  • 本文由 发表于 2023年7月1日 13:45:59
  • 转载请务必保留本文链接:https://go.coder-hub.com/76593422.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定