Delete unused variable's memory in java

前端 未结 8 604
不知归路
不知归路 2020-12-28 12:19

I know that Java have its own garbage collection, but sometimes I want to delete the garbage manually. Is there any way to do the work like that? And considering that I have

8条回答
  •  [愿得一人]
    2020-12-28 13:01

    Java is not suitable if you are trying to manage memory ! Or you write your own Garbage Collection mechanism in JVM if you have lots of time

提交回复
热议问题