// You can edit this code! // Click here and start typing. package main import "time" func main() { startTime := time.Now() time.Sleep(1000) duration := time.Since(startTime) print(duration) }
Go 持续时间计算
6 min read
// You can edit this code! // Click here and start typing. package main import "time" func main() { startTime := time.Now() time.Sleep(1000) duration := time.Since(startTime) print(duration) }