この遊び場のスニペットを参照してください。
関連コード:
type somethingFuncy func(int) bool
func funcy(i int) bool {
return i%2 == 0
}
var a interface{} = funcy
func main() {
_ = a.(func(int) bool) // Works
fmt.Println("Awesome -- apparently, literally specifying the func signature works.")
_ = a.(somethingFuncy) // Panics
fmt.Println("Darn -- doesn't get here. But somethingFuncy is the same signature as func(int) bool.")
}
最初のキャストは、型を明示的に宣言することによって機能します。しかし、2番目のキャストはパニックに陥ります。なんで?より長い func シグネチャにキャストするクリーンな方法はありますか?