gpt4 book ai didi

go - 通过注入(inject)类型查找 slice 元素的模式

转载 作者:数据小太阳 更新时间:2023-10-29 03:11:02 26 4
gpt4 key购买 nike

我尝试使用对象的类型在接口(interface) slice 中查找对象。我目前的解决方案如下所示:

package main

import (
"errors"
"fmt"
)

type Entity struct {
children []Childable
}

func (e *Entity) ChildByInterface(l interface{}) (Childable, error) {
for _, c := range e.children {
if fmt.Sprintf("%T", c) == fmt.Sprintf("%T", l) {
return c, nil
}
}
return nil, errors.New("child doesn't exist")
}

type Childable interface {
GetName() string
}

func main() {
ent := &Entity{
[]Childable{
&Apple{name: "Appy"},
&Orange{name: "Orry"},
// more types can by introduced based on build tags
},
}

appy, err := ent.ChildByInterface(&Apple{})
if err != nil {
fmt.Println(err)
} else {
appy.(*Apple).IsRed()
fmt.Printf("%+v", appy)
}
}

type Apple struct {
name string
red bool
}

func (a *Apple) GetName() string {
return a.name
}

func (a *Apple) IsRed() {
a.red = true
}

type Orange struct {
name string
yellow bool
}

func (o *Orange) GetName() string {
return o.name
}

func (o *Orange) IsYellow() {
o.yellow = true
}

https://play.golang.org/p/FmkWILBqqA-

可以使用构建标签注入(inject)更多的 Childable 类型(Apple、Orange 等)。因此,为了保证查找类型的安全并避免错误,我将 interface{} 传递给查找函数。 Childable 接口(interface)还确保新注入(inject)的类型实现正确的功能。

这是事情开始变得困惑的地方。目前我正在对接口(interface)的类型和 Childable 对象的类型进行字符串比较,看它们是否匹配:fmt.Sprintf("%T", c) == fmt.Sprintf("%T", l)

那我还是只能返回Childable接口(interface)。所以我必须使用类型断言来获取正确的类型:appy.(*Apple)

锅炉电镀是为了让 child 成为正确的类型已经变得非常乏味,而通过字符串比较来找到匹配对性能有显着的影响。我可以使用什么更好的解决方案来相互匹配两个接口(interface)以避免性能下降?

最佳答案

fmt.Sprintf("%T", c) 在幕后使用 reflect 而言,暗示它没有任何优势 - 最好使用 reflect 直接。您可以使用引用参数作为结果的占位符而不是返回值。

func (e *Entity) ChildByInterface(l Childable) error {
for _, c := range e.children {
if reflect.TypeOf(l) == reflect.TypeOf(c) {
fmt.Println(c)
reflect.ValueOf(l).Elem().Set(reflect.ValueOf(c).Elem())
return nil
}
}
return errors.New("child doesn't exist")
}

现在传递一个占位符

apple := &Apple{}
err := ent.ChildByInterface(apple)
//and use it
apple.IsRed()

Working code

关于go - 通过注入(inject)类型查找 slice 元素的模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51694537/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com