使用接口的通用函数
由于我对两种不同的数据类型有类似的函数:
func GetStatus(value uint8) (string) {...}
func GetStatus(name string) (string) {...}
我想使用一种更简单的方法,例如:
func GetStatus(value interface{}) (string) {...}
是否可以使用接口创建通用函数? 可以使用reflect.Typeof(value)检查数据类型
Since I've a similar function for 2 different data types:
func GetStatus(value uint8) (string) {...}
func GetStatus(name string) (string) {...}
I would want to use a way more simple like:
func GetStatus(value interface{}) (string) {...}
Is possible to create a generic function using an interface?
The data type could be checked using reflect.Typeof(value)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想做的事情是否需要
reflect
的复杂性和开销包裹?您是否考虑过简单的switch
语句type开关?
Does what you want to do need the complexity and overhead of the
reflect
package? Have you considered a simpleswitch
statementtype
switch?