doutangliang7769 2017-10-19 18:33
浏览 38
已采纳

Go的。(type)取消编组JSON时发生意外

I'm RTFMing, specifically the section on Decoding Arbitrary Go Data. Based on that section, I've written the following test program

var f interface{}

json.Unmarshal(
  []byte(`{"Name":"Wednesday","Age":6,"Parents":["Gomez","Morticia"]}`), &f)  

m := f.(map[string]interface{}) 
for k, v := range m {
    switch vv := v.(type) {
    case string:
        fmt.Println(k, "is string", vv)
    case int:
        fmt.Println(k, "is int", vv)
    case []interface{}:
        fmt.Println(k, "is an array:")
        for i, u := range vv {
            fmt.Println(i, u)
        }
    default:
        fmt.Println(k, "is of a type I don't know how to handle")
        fmt.Println("    Type Is:", vv)
    }
}

That is, I declare a variable with an empty interface type. Per the docs, I

use a type assertion to access f's underlying map[string]interface{}:

Then, I use range to do a for loop over the map's key/value pairs. If the value is a string, int, or []interface, the program says so. If that value is another type, (the default case), the program says I don't know how to handle it. This is almost verbatim code from the manual.

The program produces the following output.

Name is string Wednesday
Age is of a type I don't know how to handle
    Type Is: 6
Parents is an array:
0 Gomez
1 Morticia

That is -- it correctly identifies the types of strings and arrays -- for for some reason it seems like the type of the parsed 6 isn't and int -- it's 6.

So -- I guess my question is either *why does v.(type) return the actual number oinstead of int here or my question is why is that the wrong question?

  • 写回答

1条回答 默认 最新

  • duanji1056 2017-10-19 18:53
    关注

    JSON numbers are double precision floats, so the default type go uses is float64. You can see the defaults listed in the json.Unmarshal documentation.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度