如何从 Go 中的 func main 返回?

发布于 2024-10-04 05:38:03 字数 105 浏览 2 评论 0原文

如何像在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一片旧的回忆 2024-10-11 05:38:03

Go 为此使用 Exit 函数。只需将状态代码作为参数传递即可完成:)

要带有错误消息的 exit(1) ,您可以使用 log.Fatal()/log.Fatalf()/log.Fatalln(): https: //pkg.go.dev/log#Fatal

Go 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 use log.Fatal()/log.Fatalf()/log.Fatalln(): https://pkg.go.dev/log#Fatal

记忆消瘦 2024-10-11 05:38:03

正确的答案在 Matt Joiner 的链接中。本质上是以下片段。必须确保代码的其余部分在任何地方调用 os.Exit(),例如 flag.ExitOnError、log.Fatalf() 等。

func main() { os.Exit(mainReturnWithCode()) }

func mainReturnWithCode() int {
    // do stuff, defer functions, etc.
    return exitcode // a suitable exit code
}

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.

func main() { os.Exit(mainReturnWithCode()) }

func mainReturnWithCode() int {
    // do stuff, defer functions, etc.
    return exitcode // a suitable exit code
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文