Understanding Golang's Time Structure
When you create and print a time object in Golang, you’ll see an output like this: 2018-10-26 14:15:50.306558969 +0800 CST m=+0.000401093 The initial part is easy to understand, representing the year, month, day, time, and timezone. But what does the last part m=+xxxx signify? Monotonic Clocks and Wall Clocks According to the documentation of Golang’s time package, the time structure in Golang stores two types of clocks: Wall Clocks and Monotonic Clocks. ...