gpt4 book ai didi

arrays - 是否可以在 Go 函数中返回结构的动态数组?

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

显然,我想返回一个基于函数参数(getOc​​cupationStructs 函数)的结构数组,以保持 DRY(不在所有其他函数中使用 if else),但似乎不可能做,所以这是我的错误:

 cannot use []Student literal (type []Student) as type []struct {} in
return argument
cannot use []Employee literal (type []Employee ) as type []struct {} in
return argument

这是我的代码:

package main

import (
"fmt"
"time"

"github.com/jinzhu/gorm"
_ "github.com/jinzhu/gorm/dialects/postgres"
)

type Human struct {
ID uint `gorm:"primary_key" gorm:"column:_id" json:"_id"`
Name string `gorm:"column:name" json:"name"`
Age int `gorm:"column:age" json:"age"`
Phone string `gorm:"column:phone" json:"phone"`
}

type Student struct {
Human
School string `gorm:"column:school" json:"school"`
Loan float32 `gorm:"column:loan" json:"loan"`
}

type Employee struct {
Human
Company string `gorm:"column:company" json:"company"`
Money float32 `gorm:"column:money" json:"money"`
}

func getOccupationStructs(occupation string) []struct{} {
switch occupation {
case "student":
return []main.Student{}
case "employee":
return []main.Employee{}
default:
return []main.Student{}
}
}

func firstFunction(){
m := getOccupationStructs("student")
for _, value := range m{
fmt.Println("Hi, my name is "+value.Name+" and my school is "+value.School)
}
}

func secondFunction(){
m := getOccupationStructs("employee")
for _, value := range m{
fmt.Println("Hi, my name is "+value.Name+" and my company is "+value.Company)
}
}

是否有任何有效的解决方法来解决这个问题?

最佳答案

Go 没有结构子类型,因此要获得多态性,您需要使用接口(interface)。

定义一个所有结构类型都实现的接口(interface),它甚至可以是私有(private)的,比如interface embedsHuman { Name() string },然后返回[]embedsHuman

或者,重构您的模式或仅将它的 Go 表示重组为层次结构较少的东西(也许人类可以扮演许多角色?),这样它就不会与 Go 的类型系统发生冲突。

关于arrays - 是否可以在 Go 函数中返回结构的动态数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40520589/

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