1 回答

TA貢獻1853條經(jīng)驗 獲得超18個贊
如果函數(shù)參數(shù)是類型,map[string]interface{}
那么您需要將它傳遞給map[string]interface{}
(而map[string]int
不是 map[string]interface{}
)。
這是一個常見問題,在常見問題解答中進行了介紹(重點關注切片,但同樣的原則也適用于地圖)。
最好的方法實際上取決于您要完成的工作。您可以執(zhí)行以下操作(操場):
package main
import (
"fmt"
)
func main() {
v := make(map[string]interface{})
v["blah"] = 3
test(v)
v["panic"] = "string"
test(v)
}
func test(in map[string]interface{}) {
var ok bool
converted := make(map[string]int)
for k, v := range in {
converted[k], ok = v.(int)
if !ok {
panic("Unexpected type in map")
}
}
fmt.Println(converted)
}
或接受interface{}允許任何東西傳入(操場):
package main
import (
"fmt"
)
func main() {
v := make(map[string]int)
v["blah"] = 3
test(v)
w := make(map[string]string)
w["next"] = "string"
test(w)
x := make(map[string]bool)
x["panic"] = true
test(x)
}
func test(in interface{}) {
switch z := in.(type) {
case map[string]int:
fmt.Printf("dealing with map[string]int: %v\n", z)
case map[string]string:
fmt.Printf("dealing with map[string]string: %v\n", z)
default:
panic(fmt.Sprintf("unsupported type: %T", z))
}
// You could also use reflection here...
}
- 1 回答
- 0 關注
- 114 瀏覽
添加回答
舉報