最新公告
  • 欢迎您光临码农资源网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!加入我们
  • golang函数返回值的类型转换

    函数返回值类型转换分为两种方式:type assertion 检查值与特定类型是否兼容,不兼容则报错;type conversion 不检查兼容性,直接转换。实战中,可将浮点型转换为整数,或将元组中的整数转换为字符串。

    golang函数返回值的类型转换

    Go 语言中函数返回值的类型转换

    在 Go 语言中,函数返回值的类型可以用 type assertiontype conversion 来转换。

    Type Assertion

    使用 type assertion 检查值是否与特定类型兼容,并将该值转换为所期望的类型,如果类型不兼容,会导致错误:

    func GetValue() interface{} {
        return "Hello, world!"
    }
    
    func main() {
        value := GetValue()
        // 检查 value 是否为字符串类型
        if str, ok := value.(string); ok {
            fmt.Println(str) // 输出: Hello, world!
        }
    }

    Type Conversion

    使用 type conversion 将值的类型转换为所期望的类型,无论值是否兼容,都会进行转换:

    func main() {
        var num float64 = 3.14
        // 将 float64 转换为 int
        numInt := int(num)
        fmt.Println(numInt) // 输出: 3
    }

    实战案例

    以下是一个实战案例,演示如何转换函数返回值的类型:

    func GetEmployeeInfo() (string, int) {
        return "John Doe", 30
    }
    
    func main() {
        name, age := GetEmployeeInfo()
    
        // 将 age 转换为 string 类型
        ageStr := strconv.Itoa(age)
        fmt.Println("Employee Name:", name)
        fmt.Println("Employee Age:", ageStr)
    }

    输出:

    Employee Name: John Doe
    Employee Age: 30
    想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
    本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
    如有侵权请发送邮件至1943759704@qq.com删除

    码农资源网 » golang函数返回值的类型转换
    • 7会员总数(位)
    • 25846资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 292稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情