language, framework, library/golang
[Golang] time
떤뚜
2019. 8. 8. 10:24
time.Duration : int64, Nano Second
time.Duration(1,000) = Micro Second
time.Duration(1,000,000) = Milli Second
time.Duration(1,000,000,000) = Second
time.Second
time.Microsecond
time.Millisecond
time.Sleep(D duration)
time.Now()