📜  Golang 中的 time.Now()函数示例

📅  最后修改于: 2021-10-25 03:01:37             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言中的Now()函数用于查找当前本地时间。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func Now() Time

返回值:返回当前本地时间。

示例 1:

// Golang program to illustrate the usage of
// time.Now() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Calling Now() method
    tm := time.Now()
  
    // Prints current 
    // local time in UTC
    fmt.Printf("%s", tm)
}

输出:

2020-04-09 11:24:14.785868848 +0000 UTC m=+0.000187421

此处,当前时间以 UTC 形式返回。

示例 2:

// Golang program to illustrate the usage of
// time.Now() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Calling Now() method
    tm := time.Now()
    tm1 := time.Now()
  
    // Prints current local time in UTC
    fmt.Printf("%s\n", tm)
  
    // Sleep for 10 seconds
    time.Sleep(10 * time.Second)
  
    // Prints the current time after 10
    // seconds of the sleep is over
    fmt.Printf("%s", tm1)
}

输出:

2020-04-09 11:37:59.087484568 +0000 UTC m=+0.000106559
2020-04-09 11:37:59.087484779 +0000 UTC m=+0.000106736