func Now() Time 参数列表: 无 返回值: Time 功能说明: 返回当前的本地时间 代码实例: package main import ( "fmt" "time" ) func main() { fmt.Println(time.Now()) }