What is the garbage collector in Java?

前端 未结 16 1024
故里飘歌
故里飘歌 2020-11-22 11:24

I am new to Java and confused about the garbage collector in Java. What does it actually do and when does it comes into action. Please describe some of the properties of the

16条回答
  •  囚心锁ツ
    2020-11-22 12:05

    garbage collector implies that objects that are no longer needed by the program are "garbage" and can be thrown away.

提交回复
热议问题