golang 获取当前时间
时间: 2023-09-30 21:08:57 浏览: 235
在 Golang 中,获取当前时间的方式如下:
```go
package main
import (
"fmt"
"time"
)
func main() {
currentTime := time.Now()
fmt.Println("Current time is:", currentTime)
}
```
运行以上代码,将会输出类似如下的结果:
```
Current time is: 2021-08-19 10:31:12.743169 +0800 CST m=+0.000057601
```
其中,`time.Now()` 函数返回的是一个 `time.Time` 类型的值,表示当前的时间。我们可以通过调用 `time.Time` 值的方法来获取更细节的时间信息。例如:
```go
package main
import (
"fmt"
"time"
)
func main() {
currentTime := time.Now()
fmt.Println("Current year is:", currentTime.Year())
fmt.Println("Current month is:", currentTime.Month())
fmt.Println("Current day is:", currentTime.Day())
fmt.Println("Current hour is:", currentTime.Hour())
fmt.Println("Current minute is:", currentTime.Minute())
fmt.Println("Current second is:", currentTime.Second())
}
```
以上代码将输出类似如下的结果:
```
Current year is: 2021
Current month is: August
Current day is: 19
Current hour is: 10
Current minute is: 31
Current second is: 12
```
阅读全文