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

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

將任何接口作為參數(shù)時,簡化 Go 中的轉(zhuǎn)換

將任何接口作為參數(shù)時,簡化 Go 中的轉(zhuǎn)換

Go
料青山看我應(yīng)如是 2022-12-19 10:33:04
我有一個這樣的結(jié)構(gòu),//// HandlerInfo is used by features in order to register a gateway handlertype HandlerInfo struct {    Fn     func(interface{})    FnName string    FnRm   func()}我想傳遞一個函數(shù)的地方:func StarboardReactionHandler(e *gateway.MessageReactionAddEvent) { // foo}i := HandlerInfo{Fn: StarboardReactionHandler}不幸的是,這會導(dǎo)致:Cannot use 'StarboardReactionHandler' (type func(e *gateway.MessageReactionAddEvent)) as the type func(interface{})我找到了這個解決方法:func StarboardReactionHandler(e *gateway.MessageReactionAddEvent) { // foo}func handlerCast(e interface{}) {    StarboardReactionHandler(e.(*gateway.MessageReactionAddEvent))}i := HandlerInfo{Fn: handlerCast}有什么方法可以簡化需求handlerCast,例如在我的內(nèi)部StarboardReactionHandler或內(nèi)部進行HandlerInfo?也許使用泛型或反射?我基本上只想盡量減少此處所需的語法/樣板。
查看完整描述

1 回答

?
慕婉清6462132

TA貢獻1804條經(jīng)驗 獲得超2個贊

你可以使用接口{}。(類型)


下面是一個例子:


package main


import "fmt"


type HandlerInfo struct {

    Fn     func(interface{})

    FnName string

    FnRm   func()

}

type MessageReactionAddEvent = func(a, b int) int


func StarboardReactionHandler(e interface{}) {

    switch e.(type) {

    case MessageReactionAddEvent:

        fmt.Printf("%v\n", (e.(MessageReactionAddEvent))(1, 2))

    }


}

func add(a, b int) int {

    return a + b

}

func main() {

    i := HandlerInfo{Fn: StarboardReactionHandler}

    i.Fn(add)

}


查看完整回答
反對 回復(fù) 2022-12-19
  • 1 回答
  • 0 關(guān)注
  • 115 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

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

幫助反饋 APP下載

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

公眾號

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