环境
- Time 2022-08-25
- Go 1.19
前言
说明
参考:https://gobyexample.com/exit
目标
退出 Go 程序。
示例
package main
import (
"fmt"
"os"
)
func main() {
defer fmt.Println("!")
os.Exit(3)
}
总结
退出 Go 程序。
参考:https://gobyexample.com/exit
退出 Go 程序。
package main
import (
"fmt"
"os"
)
func main() {
defer fmt.Println("!")
os.Exit(3)
}
退出 Go 程序。