本文介绍了高隆:检查恐慌而不从中恢复的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在延迟功能中,我想看看是否恢复调用将产生非零值(不恢复)
In a defer function, I want to see whether a call to recover would yield a non-nil value (without recovering)
可以吗?
推荐答案
确切的事情是不可能的。你可能只是想重新恐慌,基本上就像在其他语言中重新抛出异常;
That exact thing isn't possible. You probably just want to re-panic, basically like re-throwing an exception in other languages;
defer func() {
if e := recover(); e != nil {
//log and so other stuff
panic(e)
}
}
这篇关于高隆:检查恐慌而不从中恢复的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!