
Java uses memory without explicitly releasing it. Instead, JVM manages memory. JVM deletes unused objects in the Heap area by GC. Heap area is dynamically allocated memory area. Heap manages object-type data objects, typically classes such as String and Collection. The important part of this is to determine which object to keep and which object to GC in Heap. GC is designed with the following co..
Java
2021. 10. 5. 02:02