Garbage Collector
-
[매일읽기] Garbage Collection: How it’s done개발자 라이프/매일읽기 2020. 8. 16. 10:41
원문 : https://medium.com/@kasunpdh/garbage-collection-how-its-done-d48135c7fe77 Garbage Collection: How it’s done? If you are familiar with the basics of the memory allocation in programming languages, you know that there are two parts in the memory… medium.com Heap과 Stack 메모리 Stack 메모리는 스레드 실행에 사용되는 메모리 함수가 호출되면 스택에 메모리 블록이 할당되고, 그 메모리 함수의 지역 변수들이 저장됨 함수가 반환되면 할당됐던 메모리들도 해제됨 Heap 메모리는 new 등의 키워드..