我有一個這樣的結(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?也許使用泛型或反射?我基本上只想盡量減少此處所需的語法/樣板。
將任何接口作為參數(shù)時,簡化 Go 中的轉(zhuǎn)換
料青山看我應(yīng)如是
2022-12-19 10:33:04