`fmt.Println(time.Now())`<br/>
`打印结果:2017-11-18 16:36:41.8491739 +0800 CST m=+0.008006700`
上面的m=+0.008006700 是什么意思?我该如何去掉,只需要我的time实例能打印到CST为止
"2006-01-02 15:04:05.0000000 -0700 MST" 用这个模板是可以的,但是m=+0.008006700 到底是啥东西
#2
更多评论
试试
```
time.Now().Format("2017-11-18 16:36:41.8491739 +0800")
```
#1
If the time has a monotonic clock reading, the returned string includes a final field "m=±<value>", where value is the monotonic clock reading formatted as a decimal number of seconds.
不太理解这句话
http://docs.studygolang.com/pkg/time/#Time.String
#3