使用接口的通用函数

发布于 2024-08-31 11:20:42 字数 295 浏览 9 评论 0原文

由于我对两种不同的数据类型有类似的函数:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

红ご颜醉 2024-09-07 11:20:42

您想做的事情是否需要 reflect 的复杂性和开销包裹?您是否考虑过简单的 switch 语句 type开关?

package main

import (
    "fmt"
)

func GetStatus(value interface{}) string {
    var s string
    switch v := value.(type) {
    case uint8:
        v %= 85
        s = string(v + (' ' + 1))
    case string:
        s = v
    default:
        s = "error"
    }
    return s
}

func main() {
    fmt.Println(GetStatus(uint8(2)), GetStatus("string"), GetStatus(float(42.0)))
}

Does what you want to do need the complexity and overhead of the reflect package? Have you considered a simple switch statement type switch?

package main

import (
    "fmt"
)

func GetStatus(value interface{}) string {
    var s string
    switch v := value.(type) {
    case uint8:
        v %= 85
        s = string(v + (' ' + 1))
    case string:
        s = v
    default:
        s = "error"
    }
    return s
}

func main() {
    fmt.Println(GetStatus(uint8(2)), GetStatus("string"), GetStatus(float(42.0)))
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文