喵-见缝插针 2013-11-24 02:08 采纳率: 0%
浏览 277
已采纳

如何在 Go 中查找对象的类型?

How do I find the type of an object in Go? In Python, I just use typeof to fetch the type of object. Similarly in Go, is there a way to implement the same ?

Here is the container from which I am iterating:

for e := dlist.Front(); e != nil; e = e.Next() {
    lines := e.Value
    fmt.Printf(reflect.TypeOf(lines))
}

I am not able to get the type of the object lines in this case which is an array of strings.

转载于:https://stackoverflow.com/questions/20170275/how-to-find-a-type-of-an-object-in-go

  • 写回答

12条回答 默认 最新

  • Memor.の 2013-11-24 02:58
    关注

    The Go reflection package has methods for inspecting the type of variables.

    The following snippet will print out the reflection type of a string, integer and float.

    package main
    
    import (
        "fmt"
        "reflect"
    )
    
    func main() {
    
        tst := "string"
        tst2 := 10
        tst3 := 1.2
    
        fmt.Println(reflect.TypeOf(tst))
        fmt.Println(reflect.TypeOf(tst2))
        fmt.Println(reflect.TypeOf(tst3))
    
    }
    

    see: http://play.golang.org/p/XQMcUVsOja to view it in action.

    More documentation here: http://golang.org/pkg/reflect/#Type

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(11条)

报告相同问题?

悬赏问题

  • ¥15 Windows Script Host 无法找到脚本文件"C:\ProgramData\Player800\Cotrl.vbs”
  • ¥15 matlab自定义损失函数
  • ¥15 35114 SVAC视频验签的问题
  • ¥15 impedancepy
  • ¥15 求往届大挑得奖作品(ppt…)
  • ¥15 如何在vue.config.js中读取到public文件夹下window.APP_CONFIG.API_BASE_URL的值
  • ¥50 浦育平台scratch图形化编程
  • ¥20 求这个的原理图 只要原理图
  • ¥15 vue2项目中,如何配置环境,可以在打完包之后修改请求的服务器地址
  • ¥20 微信的店铺小程序如何修改背景图