我需要defer使用C库来释放手动创建的分配,但我也需要os.Exit在某些时候使用非 0 状态。棘手的部分是os.Exit跳过任何延迟指令:package mainimport "fmt"import "os"func main() { // `defer`s will _not_ be run when using `os.Exit`, so // this `fmt.Println` will never be called. defer fmt.Println("!") // sometimes ones might use defer to do critical operations // like close a database, remove a lock or free memory // Exit with status code. os.Exit(3)}游乐场:http : //play.golang.org/p/CDiAh9SXRM从https://gobyexample.com/exit窃取那么如何退出一个遵循声明defer调用的 go 程序呢?有什么替代方法os.Exit吗?
3 回答
郎朗坤
TA贡献1921条经验 获得超9个赞
只需将您的程序向下移动一个级别并返回您的退出代码:
package main
import "fmt"
import "os"
func doTheStuff() int {
defer fmt.Println("!")
return 3
}
func main() {
os.Exit(doTheStuff())
}
白衣染霜花
TA贡献1796条经验 获得超10个赞
runtime.Goexit()
是实现这一目标的简单方法。
Goexit 终止调用它的 goroutine。没有其他 goroutine 受到影响。Goexit 在终止 goroutine 之前运行所有延迟调用。然而,因为 Goexit 并不恐慌,这些延迟函数中的任何恢复调用都将返回 nil。
然而:
从主协程调用 Goexit 会终止该协程,而不会返回 func main。由于 func main 没有返回,程序继续执行其他 goroutine。如果所有其他 goroutine 退出,程序就会崩溃。
所以如果你从主 goroutine 调用它,main
你需要在顶部添加
defer os.Exit(0)
在此之下,您可能想要添加一些其他defer
语句,以通知其他 goroutine 停止和清理。
- 3 回答
- 0 关注
- 181 浏览
添加回答
举报
0/150
提交
取消