• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    golang语言如何将interface转为int, string,slice,struct等类型

    在golang中,interface{}允许接纳任意值,int,string,struct,slice等,因此我可以很简单的将值传递到interface{},例如:

    package main
    import (
     "fmt"
    )
    type User struct{
     Name string
    }
    func main() {
     any := User{
      Name: "fidding",
     }
     test(any)
     any2 := "fidding"
     test(any2)
     any3 := int32(123)
     test(any3)
     any4 := int64(123)
     test(any4)
     any5 := []int{1, 2, 3, 4, 5}
     test(any5)
    }
    
    // value 允许为任意值
    func test(value interface{}) {
     ...
    }

    但是当我们将任意类型传入到test函数中转为interface后,经常需要进行一系列操作interface不具备的方法(即传入的User结构体,interface本身也没有所谓的Name属性),此时就需要用到interface特性type assertionstype switches,来将其转换为回原本传入的类型

    举个栗子:

    package main
    import (
     "fmt"
    )
    type User struct{
     Name string
    }
    func main() {
     any := User{
      Name: "fidding",
     }
     test(any)
     any2 := "fidding"
     test(any2)
     any3 := int32(123)
     test(any3)
     any4 := int64(123)
     test(any4)
     any5 := []int{1, 2, 3, 4, 5}
     test(any5)
    }
    func test(value interface{}) {
     switch value.(type) {
     case string:
      // 将interface转为string字符串类型
      op, ok := value.(string)
      fmt.Println(op, ok)
     case int32:
      // 将interface转为int32类型
      op, ok := value.(int32)
      fmt.Println(op, ok)
     case int64:
      // 将interface转为int64类型
      op, ok := value.(int64)
      fmt.Println(op, ok)
     case User:
      // 将interface转为User struct类型,并使用其Name对象
      op, ok := value.(User)
      fmt.Println(op.Name, ok)
     case []int:
      // 将interface转为切片类型
      op := make([]int, 0)
      op = value.([]int)
      fmt.Println(op)
     default:
      fmt.Println("unknown")
     }
    }

    执行输出结果为

    fidding true
    fidding true
    123 true
    123 true
    [1 2 3 4 5]

    可以看到我们可以对interface使用.()并在括号中传入想要解析的任何类型,形如

    // 如果转换失败ok=false,转换成功ok=true
    res, ok := anyInterface.(someType)

    并且我们并不确定interface类型时候,使用anyInterface.(type)结合switch case来做判断。

    现在再回过头看上面的栗子,是不是更清楚了呢

    到此这篇关于golang语言如何将interface转为int, string,slice,struct等类型的文章就介绍到这了,更多相关golang interface内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • 深入解析Go语言编程中slice切片结构
    • go 判断两个 slice/struct/map 是否相等的实例
    • Golang中的Slice与数组及区别详解
    • Go 中 slice 的 In 功能实现探索
    • Go语言中slice作为参数传递时遇到的一些“坑”
    • 深入理解go slice结构
    上一篇:详解Go内存模型
    下一篇:golang的基础语法和常用开发工具详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    golang语言如何将interface转为int, string,slice,struct等类型 golang,语言,如何,将,interface,