gpt4 book ai didi

去反射(reflect).MakeFunc。如何返回 err=nil 作为 reflect.Value?

转载 作者:IT王子 更新时间:2023-10-29 02:05:18 26 4
gpt4 key购买 nike

如何返回一个 err=nil 作为 reflect.Value?我需要编写一个交换函数以与 reflect.MakeFunc() 一起使用。

//my swap implementation, that call the original function and cache results
func swapFunc(ins []reflect.Value) []reflect.Value {
//After cache the first return (Offer) of function FindBestOffer(int)(Offer,bool,error),
//i need to return the best Offer cached and default values
//for the two other returns (bool=true, err=nil)

outs := make([]reflect.Value, 3) //mock cache return

outs[0] = reflect.ValueOf(Offer{10, "cached offer", 20})
outs[1] = reflect.ValueOf(true)
outs[2] = reflect.ValueOf(nil).Elem() // --> Doesn't work!

return outs
}

Go Playground full example

最佳答案

定义类型化的 nil 错误也可以...

var err error = nil
outs[2] = reflect.ValueOf(&err).Elem()

只是出于好奇。 Go Playground

关于去反射(reflect).MakeFunc。如何返回 err=nil 作为 reflect.Value?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30652392/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com