我正在寻找有关清理以下结构的最佳方法的建议。我知道 Go 没有静态方法,通常最好将功能封装在单独的包中。我的结构类型相互引用,因此由于循环导入,不能在单独的包中声明。
type Payment struct {
User *User
}
type User struct {
Payments *[]Payments
}
func (u *User) Get(id int) *User {
// Returns the user with the given id
}
func (p *Payment) Get(id int) *Payment {
// Returns the payment with the given id
}
但是,如果我想加载用户或付款,我只是扔掉接收器:
var u *User
user := u.Get(585)
我可以命名函数本身,这让我觉得不干净:
func GetUser(id int) *User {
// Returns the user with the given id
}
func GetPayment(id int) *Payment {
// Returns the payment with the given id
}
我真的希望能够.Get
在结构上调用或类似的方法,而无需在函数本身中写入结构的名称。这样做的惯用方法是什么?