10 2022 档案
摘要:调试参数refer: https://github.com/golang/vscode-go/blob/master/docs/debugging.mdlaunch.json { // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问:
阅读全文
摘要:refer: https://blog.csdn.net/luo2pei4321/article/details/125839250一.本地调试 1.dlv debug source file dlv debug meng.go 2.dlv exec binary file go build -gc
阅读全文
摘要:1.获取当地时间0点时间戳func GetZeroTime() int64 { nowTime := time.Now() now := nowTime.Unix() _, offsetSeconds := nowTime.Zone() //相对于utc时区偏移秒数 seconds := (now
阅读全文