# การจัดการหน่วยความจำ (Go) > Stack vs heap, escape analysis, garbage collector, การทำ memory profiling, pprof, memory leaks - 24 คำถามสัมภาษณ์ - Senior - [คำถามสัมภาษณ์: Go](https://sharpskill.dev/th/technologies/go/interview-questions.md) ## 1. ความแตกต่างหลักระหว่างการจัดสรรบน stack และการจัดสรรบน heap ใน Go คืออะไร? **คำตอบ** stack ถูกจัดการโดยอัตโนมัติและการจัดสรรทำได้รวดเร็วมาก (เพียงแค่ขยับ stack pointer) ตัวแปรบน stack จะถูกคืนหน่วยความจำโดยอัตโนมัติเมื่อฟังก์ชัน return ส่วน heap จำเป็นต้องใช้ garbage collector ในการคืนหน่วยความจำและการจัดสรรช้ากว่าเพราะเกี่ยวข้องกับ Go runtime ตัวแปรที่ยังคงอยู่หลังจบฟังก์ชันหรือมีขนาดที่ไม่ทราบในเวลาคอมไพล์จะไปอยู่บน heap ## 2. escape analysis ใน Go คืออะไร? **คำตอบ** escape analysis คือการวิเคราะห์แบบสแตติกที่คอมไพเลอร์ Go ทำเพื่อตัดสินว่าตัวแปรสามารถอยู่บน stack ได้หรือต้องจัดสรรบน heap หากคอมไพเลอร์ตรวจพบว่าตัวแปรถูกอ้างอิงนอกฟังก์ชันที่สร้างมัน (ผ่านพอยน์เตอร์ที่ส่งคืน การเก็บในตัวแปร global ฯลฯ) ตัวแปรนั้นจะ 'escape' และถูกจัดสรรบน heap การวิเคราะห์นี้ช่วยปรับการจัดสรรหน่วยความจำให้เหมาะสมโดยอัตโนมัติ ## 3. จะดูผลลัพธ์ของ escape analysis ระหว่างการคอมไพล์ได้อย่างไร? **คำตอบ** แฟล็ก -gcflags=-m ช่วยให้ดูการตัดสินใจของ escape analysis ได้ การใช้ -m=2 หรือ -m=3 จะให้รายละเอียดมากขึ้นว่าทำไมตัวแปรถึง escape ตัวอย่างเช่น 'go build -gcflags=-m=2' จะแสดงข้อความเช่น 'moved to heap: x' เพื่อบ่งบอกว่าตัวแปรถูกย้ายไปยัง heap เครื่องมือนี้จำเป็นสำหรับการปรับการจัดสรรหน่วยความจำในโค้ดที่สำคัญให้เหมาะสม ## มีอีก 21 คำถาม - ในกรณีใดที่ตัวแปร local จะ escape ไปยัง heap? - บทบาทหลักของ garbage collector ใน Go คืออะไร? สมัครฟรี: https://sharpskill.dev/th/login ## หัวข้อสัมภาษณ์ Go อื่นๆ - [พื้นฐาน Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-basics.md): 25 คำถาม, Junior - [โครงสร้างข้อมูล Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-data-structures.md): 20 คำถาม, Junior - [อินเทอร์เฟซใน Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-interfaces.md): 18 คำถาม, Junior - [การจัดการข้อผิดพลาด](https://sharpskill.dev/th/technologies/go/interview-questions/error-handling.md): 20 คำถาม, Junior - [พื้นฐาน Goroutine](https://sharpskill.dev/th/technologies/go/interview-questions/goroutines-basics.md): 20 คำถาม, Junior - [Channels](https://sharpskill.dev/th/technologies/go/interview-questions/channels.md): 22 คำถาม, Junior - [Go Modules](https://sharpskill.dev/th/technologies/go/interview-questions/go-modules.md): 18 คำถาม, Mid-Level - [เซิร์ฟเวอร์ HTTP](https://sharpskill.dev/th/technologies/go/interview-questions/http-server.md): 24 คำถาม, Mid-Level - [ไคลเอนต์ HTTP](https://sharpskill.dev/th/technologies/go/interview-questions/http-client.md): 18 คำถาม, Mid-Level - [การเข้ารหัส JSON](https://sharpskill.dev/th/technologies/go/interview-questions/json-encoding.md): 20 คำถาม, Mid-Level - [Database/SQL](https://sharpskill.dev/th/technologies/go/interview-questions/database-sql.md): 22 คำถาม, Mid-Level - [แพ็กเกจ context](https://sharpskill.dev/th/technologies/go/interview-questions/context-package.md): 20 คำถาม, Mid-Level - [Testing](https://sharpskill.dev/th/technologies/go/interview-questions/testing.md): 22 คำถาม, Mid-Level - [รูปแบบ Concurrency](https://sharpskill.dev/th/technologies/go/interview-questions/concurrency-patterns.md): 24 คำถาม, Mid-Level - [ไพรมิทีฟการซิงโครไนซ์](https://sharpskill.dev/th/technologies/go/interview-questions/sync-primitives.md): 22 คำถาม, Mid-Level - [เฟรมเวิร์กเว็บ Go](https://sharpskill.dev/th/technologies/go/interview-questions/go-web-frameworks.md): 20 คำถาม, Mid-Level - [การออกแบบ REST API](https://sharpskill.dev/th/technologies/go/interview-questions/rest-api-design.md): 20 คำถาม, Mid-Level - [gRPC](https://sharpskill.dev/th/technologies/go/interview-questions/grpc.md): 22 คำถาม, Mid-Level - [Reflection](https://sharpskill.dev/th/technologies/go/interview-questions/reflection.md): 20 คำถาม, Senior - [การเพิ่มประสิทธิภาพการทำงาน](https://sharpskill.dev/th/technologies/go/interview-questions/performance-optimization.md): 22 คำถาม, Senior - [Generics](https://sharpskill.dev/th/technologies/go/interview-questions/generics.md): 20 คำถาม, Senior - [Go Design Patterns](https://sharpskill.dev/th/technologies/go/interview-questions/design-patterns.md): 24 คำถาม, Senior - [Microservices](https://sharpskill.dev/th/technologies/go/interview-questions/microservices.md): 24 คำถาม, Senior - [ความปลอดภัยและการยืนยันตัวตน](https://sharpskill.dev/th/technologies/go/interview-questions/security-authentication.md): 24 คำถาม, Senior - [Docker & Containerization](https://sharpskill.dev/th/technologies/go/interview-questions/docker-containerization.md): 20 คำถาม, Senior - [Kubernetes Basics](https://sharpskill.dev/th/technologies/go/interview-questions/kubernetes-basics.md): 22 คำถาม, Senior - [Go ขั้นสูง](https://sharpskill.dev/th/technologies/go/interview-questions/advanced-go.md): 20 คำถาม, Senior - [การพัฒนา CLI](https://sharpskill.dev/th/technologies/go/interview-questions/cli-development.md): 20 คำถาม, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/technologies/go/interview-questions/memory-management