以下代碼工作正常var requestMap map[string]interface{}for _, value := range requestMap { switch v := value.(type) { case []interface{}: if len(v) == 0 { // if is empty then no need to throw NA return http.StatusOK, nil } case string: if len(v) == 0 { // if is empty then no need to throw NA return http.StatusOK, nil } }}但是下面的代碼給出了invalid argument for len function,我已經(jīng)閱讀了這個問題var requestMap map[string]interface{}for _, value := range requestMap { switch v := value.(type) { case []interface{}, string: if len(v) == 0 { // if is empty then no need to throw NA return http.StatusOK, nil } }}這個 case 語句不足以識別[]interface{}或string作為值類型嗎?為什么它仍在考慮interface{}作為參數(shù)len()
2 回答

斯蒂芬大帝
TA貢獻1827條經(jīng)驗 獲得超8個贊
如果在case
一個類型開關(guān)中列出多個類型,則switch
變量的靜態(tài)類型將是原始變量的類型。規(guī)范:開關(guān)語句:
在 case 中僅列出一種類型的子句中,變量具有該類型;否則,該變量具有 TypeSwitchGuard 中表達式的類型。
因此,如果 switch 表達式是v := value.(type)
,v
則匹配案例(列出多種類型)中的 of 將是 的類型value
,在您的情況下它將是interface{}
。并且內(nèi)置len()
函數(shù)不允許傳遞 type 的值interface{}
。

holdtom
TA貢獻1805條經(jīng)驗 獲得超10個贊
這是因為在類型切換的情況下,v
應(yīng)同時轉(zhuǎn)換為接口 ( )[]interface
和 astring
的一部分。編譯器無法決定使用哪個,因此它會將值還原為,因為它可以是任何值。interface{}
- 2 回答
- 0 關(guān)注
- 120 瀏覽
添加回答
舉報
0/150
提交
取消