如何为Go程序添加暂停?

时间:2013-07-17 03:51:38

标签: go

当我执行Go Console程序时,它只在一秒内执行,我一直在Google,Go网站和Stackoverflow上查看。

import (
    "fmt"
)

func main() {
    fmt.Println()
}

执行时会立即关闭。

编辑2 实际上我希望程序永久保持暂停状态,直到用户按下按钮

4 个答案:

答案 0 :(得分:47)

您可以使用time.Sleep()暂停程序任意长时间。例如:

package main
import ( "fmt"
         "time"
       )   

func main() {
  fmt.Println("Hello world!")
  duration := time.Second
  time.Sleep(duration)
}

要随意增加持续时间,您可以:

duration := time.Duration(10)*time.Second // Pause for 10 seconds

编辑:由于OP增加了对问题的额外限制,上面的答案不再适合该法案。您可以暂停直到按下 Enter 键,方法是创建一个等待读取换行符(\n)字符的新缓冲区读取器。

package main
import ( "fmt"
         "bufio"
         "os"
       )

func main() {
  fmt.Println("Hello world!")
  fmt.Print("Press 'Enter' to continue...")
  bufio.NewReader(os.Stdin).ReadBytes('\n') 
}

答案 1 :(得分:8)

最简单的另一种最小进口方式使用这2行:

var input string
fmt.Scanln(&input)

在程序结束时添加此行,将暂停屏幕,直到用户按下Enter键,例如:

package main

import "fmt"

func main() {
    fmt.Println("Press the Enter Key to terminate the console screen!")
    var input string
    fmt.Scanln(&input)
}

答案 2 :(得分:4)

package main

import "fmt"

func main() {
    fmt.Println("Press the Enter Key to terminate the console screen!")
    fmt.Scanln() // wait for Enter Key
}

答案 3 :(得分:0)

import "fmt"

func main() {
    fmt.Scanln()
}

我仅使用fmt.Scanln一行。