Go语言宕机恢复(recover)——防止程序崩溃
Posted 技术颜良
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Go语言宕机恢复(recover)——防止程序崩溃相关的知识,希望对你有一定的参考价值。
package main
import (
"fmt"
)
func RE() {
defer func() {
err:= recover()
if err != nil{
fmt.Println(err)
}
}()
func() {
panic("fsdfsdf")
}()
}
func main() {
RE()
fmt.Println("fsdfs")
}
更多具体细节http://c.biancheng.net/view/64.html
以上是关于Go语言宕机恢复(recover)——防止程序崩溃的主要内容,如果未能解决你的问题,请参考以下文章