如何从 Go 中的 func main 返回?
如何像在 C 中一样从 main
返回并带有退出代码? 上下文:我正在检查是否有一个命令行参数,如果参数计数或参数无效,我将打印用法并返回错误状态代码。
How do I return from main
with an exit code as I would in C? Context: I'm checking that there is a single command line argument, I will print usage and return an an error status code if the argument count, or argument is invalid.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Go 为此使用 Exit 函数。只需将状态代码作为参数传递即可完成:)
要带有错误消息的
exit(1)
,您可以使用log.Fatal()
/log.Fatalf()
/log.Fatalln()
: https: //pkg.go.dev/log#FatalGo uses the Exit function for that. Just pass the status code as an argument and you're done :)
To
exit(1)
with an error message you can uselog.Fatal()
/log.Fatalf()
/log.Fatalln()
: https://pkg.go.dev/log#Fatal正确的答案在 Matt Joiner 的链接中。本质上是以下片段。必须确保代码的其余部分不在任何地方调用 os.Exit(),例如 flag.ExitOnError、log.Fatalf() 等。
The correct answer is in the link by Matt Joiner. Essentially the following snippet. One has to ensure that rest of the code does not call os.Exit() anywhere, like flag.ExitOnError, log.Fatalf(), etc.