请问这是怎么运行的 最好来个图片箭头指示:smile:
func main() {
var s []byte
protect(func() { s[0] = 0 })
protect(func() { panic(42) })
s[0] = 42
}
func protect(g func()) {
defer func() {
log.Println("done")
if x := recover(); x != nil {
log.Printf("run time paric:%v", x)
}
}()
log.Println("start:")
g()
}
更多评论
protect 先用defer和recover设置恢复(recover也只在defer语句里面有效),然后调用传过来的参数g(g是一个函数。可以通过g()在protect里面调用)。在main里面调用protect的时候传入的参数是一个匿名函数,而且都会引起panic。但是protect设置了recover,两次调用都不会引起main退出。因为现在s是nil,最后一句赋值引起main函数panic,main进而因为panic退出。至于运行顺序,可以通过log的打印看出来。
#1