diff --git a/_posts/2023-11-06-javaGC.md b/_posts/2023-11-06-javaGC.md index 4a5f149..b8148b0 100644 --- a/_posts/2023-11-06-javaGC.md +++ b/_posts/2023-11-06-javaGC.md @@ -4,7 +4,7 @@ title: 자바의 가비지 컬렉션 author: 박석희 categories: GC banner: - image: https://github.com/Kernel360/blog-image/blob/main/1106/thumb_gc.png + image: https://raw.githubusercontent.com/Kernel360/blog-image/main/1106/thumb_gc.png background: "#000" height: "100vh" min_height: "38vh" @@ -77,7 +77,7 @@ member.setName("Park SeokHee"); 이를 해결하기 위해 C나 C++ 같은 언어에선 개발자가 직접 메모리에 할당 해제 합니다. 이는 효율적으로 메모리를 관리하도록 프로그램을 개발하게 도와주지만 반대로 이것이 잘되지 않았을 경우 프로그램 크래시를 일으키기도 합니다. -![Untitled](https://github.com/Kernel360/blog-image/blob/main/1106/1.png) +![Untitled](https://github.com/Kernel360/blog-image/blob/main/1106/1.png?raw=true) 자바에서는 JVM의 가비지 콜렉터가 이 역할을 자동으로 수행합니다.