go 程序打印占用内存

如果想知道当前的内存状态,可以使用:

var m runtime.MemStats
runtime.ReadMemStats(&m)
fmt.Printf("%d Kb\n", m.Alloc / 1024)

你可能感兴趣的:(go 程序打印占用内存)