dpnof28482 2017-07-20 18:16
浏览 547
已采纳

golang-阻止应用退出

In Go, with a panic() you can use defer and recover() to prevent an app from exiting and continue executing code.

However, I'm trying to prevent my app from exiting when getting a dial tcp 192.168.1.1:830: getsockopt: connection refused. The application Exits with a status code of 1. It's technically not an error so I can't catch the error. The external package I'm using to make the tcp dial causes the app to Exit when this condition occurs. (In this case, it's because the port is blocked.)

So how can I recover the Exit from another package and continue on with my application? Take the below as an example:

func makeRequest(target string) {
    // Exits with status code 1, if connection refused 
    res, err := request.NewSession(target)
}
  • 写回答

1条回答 默认 最新

  • doudieyou5209 2017-07-21 00:20
    关注

    Unfortunately no, you can't recover from a call to os.Exit(). The documentation says that it exits immediately, and not even differed functions are called. I recommend to not use a package if it has an exit in it, as that is a pretty bad design.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?