问题解决方法:
在这个程序中,我们将使用 os.Exit() 函数终止程序。
程序/源代码:
下面给出了演示 os.Exit() 函数的源代码。给定的程序在 ubuntu 18.04 操作系统上编译和执行成功。
// Golang program to demonstrate
// the os.Exit() function
package main
import "fmt"
import "os"
func main() {
var num int = 0
fmt.Printf("Enter number:")
fmt.Scanf("%d", &num)
if num > 0 {
fmt.Printf("Program terminated\n")
os.Exit(0)
}
fmt.Printf("Program finished normally\n")
}
输出:
RUN 1: Enter number:3 Program terminated RUN 2: Enter number:0 Program finished normally
说明:
在上面的程序中,我们声明了包 main。 main 包用于告诉 Go 语言编译器必须编译该包并生成可执行文件。在这里,我们导入了 "fmt" 包以使用 Printf() 函数,我们还导入了 "os" 包以使用 Exit() 函数。
在main()函数中,我们使用了os.Exit()函数来终止程序的执行。
相关用法
- Golang os.Expand()用法及代码示例
- Golang os.ExpandEnv()用法及代码示例
- Golang os.Chdir()用法及代码示例
- Golang os.Getwd()用法及代码示例
- Golang strconv.QuoteToASCII()用法及代码示例
- Golang io.CopyBuffer()用法及代码示例
- Golang reflect.Kind()用法及代码示例
- Golang time.Parse()用法及代码示例
- Golang bits.RotateLeft16()用法及代码示例
- Golang math.Ceil()用法及代码示例
- Golang atomic.AddInt32()用法及代码示例
- Golang strings.ToLowerSpecial()用法及代码示例
- Golang time.Time.MarshalJSON()用法及代码示例
- Golang io.Pipe()用法及代码示例
- Golang strings.EqualFold()用法及代码示例
- Golang reflect.FuncOf()用法及代码示例
- Golang complx.Exp()用法及代码示例
- Golang string.Contains用法及代码示例
- Golang reflect.NumMethod()用法及代码示例
- Golang time.Time.Clock()用法及代码示例
注:本文由纯净天空筛选整理自 Golang program to demonstrate the os.Exit() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。