第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

通過(guò)反射將“interface {}”類型轉(zhuǎn)換為“interface {}”類型切片中的另一個(gè)接口

通過(guò)反射將“interface {}”類型轉(zhuǎn)換為“interface {}”類型切片中的另一個(gè)接口

Go
拉丁的傳說(shuō) 2023-08-07 15:23:18
我有一個(gè)類型的切片People,我需要將此切片傳遞給獲取類型“interface {}”的函數(shù)。People 類型“實(shí)現(xiàn)”了一個(gè)名為 的接口HasCustomField,但我無(wú)法在函數(shù)內(nèi)進(jìn)行類型轉(zhuǎn)換,就像我正在做的那樣:type HasCustomField interface {    GetCustomField() map[string]interface{}}type People struct {        Name string    customField map[string]interface{}}func (c *People) GetCustomField() map[string]interface{} {    if c.customField == nil {        c.customField = make(map[string]interface{})    }    return c.customField}func main() {    users := []People{{Name:"Teste"},{Name:"Mizael"}}    ProcessCustomField(&users)}func ProcessCustomField(list interface{}) {    if list != nil {        listVal := reflect.ValueOf(list).Elem()        if listVal.Kind() == reflect.Slice {             for i:=0; i<listVal.Len(); i++ {                 valueReflect := listVal.Index(i).Interface()                 objValueFinal, ok := valueReflect.(HasCustomField)                 if ok {                    fmt.Println("OK")                } else {                    fmt.Println("NAO OK")                }        }}結(jié)果總是“不正?!保覠o(wú)法進(jìn)行轉(zhuǎn)換,我也嘗試了其他幾種方法,包括GetCustomField()通過(guò)反射調(diào)用該方法,但不成功。
查看完整描述

1 回答

?
陪伴而非守候

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超8個(gè)贊

GetCustomField方法位于指針接收者上*People,但切片包含People值。獲取切片元素的地址以使用指針接收器:

valueReflect := listVal.Index(i).Addr().Interface()  // <-- Addr()

在操場(chǎng)上跑起來(lái)

額外的簡(jiǎn)化:使用切片參數(shù)而不是指向切片的指針。

ProcessCustomField(users) // <-- do not take addr here
...

listVal := reflect.ValueOf(list) <-- do not call Elem() here

在操場(chǎng)上運(yùn)行它。


查看完整回答
反對(duì) 回復(fù) 2023-08-07
  • 1 回答
  • 0 關(guān)注
  • 182 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)