Replies: 2 comments
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Intro
Java에서 제공하는 객체 소멸자(finalize, cleaner) => 일단 결론은 기본적으로 쓰지 마라~!
System.gc()
와 같은 메서드로 GC를 호출하더라도, 객체 소멸자(finalize, cleaner)의 수행을 보장할 수 없다. (수행될 가능성을 높여줄 수는 있지만...)System.gc()
: GC를 강제로 실행하겠다 (X) / 지금 GC 실행하면 좋겠어(요청) (O)finalizer
cleaner
finalizer, cleaner... 언제 사용할까?
Beta Was this translation helpful? Give feedback.
All reactions