Skip to content

Instantly share code, notes, and snippets.

@BruceChen7
Created April 13, 2022 16:27
Show Gist options
  • Save BruceChen7/a86f1c24d836443499b86fa1d5120e54 to your computer and use it in GitHub Desktop.
Save BruceChen7/a86f1c24d836443499b86fa1d5120e54 to your computer and use it in GitHub Desktop.
#golang#gc#memory
// go build -gcflags="-m"`
// 可以进行逃逸分析
package main
func main() {
var m = make([]int, 10240)
println(m[0])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment