go语言获取当前时间 0 By 董德多 on 2022年11月9日 Gopackage main import ( "fmt" "time" ) func main() { ct := time.Now() fmt.Println(ct) } time