gpt4 book ai didi

go - Go中结构本身的方法

转载 作者:行者123 更新时间:2023-12-01 22:14:20 26 4
gpt4 key购买 nike

我注意到在 ORM 库 Gorm 中,您可以使用如下结构定义自定义表名:

type DeviceStatus struct {
// Define some Gorm model fields here
}

// TableName custumizes DeviceStatus SQL table name
func (DeviceStatus) TableName() string {
return "CustomDeviceStatusTableName"
}

这个结构叫什么?我试图用谷歌找到这个并弄清楚如何进行函数调用。

最佳答案

您正在实现 tabler 界面。它只包含一种方法:

type tabler interface {
TableName() string
}

阅读更多关于 Interface types在规范中。

关于go - Go中结构本身的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61378026/

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