douqiao5440 2016-07-07 17:18
浏览 73
已采纳

将Go接口{}与内置类型直接进行比较:为什么这样做有效?

Why does the following Go code work?

That is, since the types of f and b are interface{} (and not any of bool, int or string), how is it possible for me to get away with not casting or type-asserting f and b in each of the three if statements?

package main

import (
    "fmt"
    "reflect"
)

func foop(p map[string]interface{}) {
    p["foo"] = true
}

func barp(p map[string]interface{}) {
    p["bar"] = 17
}

func foop2(p map[string]interface{}) {
    p["foo"] = "blah"
}

func main() {
    p := make(map[string]interface{})
    fmt.Printf("%v
", p)

    foop(p)
    barp(p)
    f := p["foo"]
    b := p["bar"]
    fmt.Printf("f: %T
", f)
    if f == true {
        fmt.Println("ok")
    }
    fmt.Printf("b: %T
", b)
    if b == 17 {
        fmt.Println("ok")
    }

    foop2(p)
    f = p["foo"]
    if f == "blah" {
        fmt.Println("ok")
    }
    fmt.Printf("f: %T
", f)
    fmt.Printf("f: %s
", reflect.TypeOf(f))
}

(Go Playground: https://play.golang.org/p/kPi25yW6tF)

  • 写回答

1条回答 默认 最新

  • dsfhe34889 2016-07-07 17:35
    关注

    As with most Go language questions, the answer is in the Go Programming Language Specification, specifically the section on Comparison Operators.

    A value x of non-interface type X and a value t of interface type T are comparable when values of type X are comparable and X implements T. They are equal if t's dynamic type is identical to X and t's dynamic value is equal to x.

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

报告相同问题?

悬赏问题

  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号