常常在社群裡面看到從其他程式語言轉來用Go會有的問題
這些是找到的資料跟總結
同步更新在github上
https://github.com/whitefloor/coding-interview-university-reading-notes-use-golang
靜態記憶體配置
A call stack is a LIFO stack data structure that stores arguments, local variables, and other data tracked as a thread executes functions
將可預期的變數或是function等...的處理方法
將不可預期的變數或資料分配管理,且會被GC回收的處理方法
Go在使用上並沒有提到Stack or Heap
只會在GC(garbage-collected)內遵循一套嚴格的規則進行處理
If you need to know where your variables are allocated pass the "-m" gc flag to "go build" or "go run" (e.g., go run -gcflags -m app.go).