Wait for Garbage Collection of a specific object

前端 未结 2 1386
粉色の甜心
粉色の甜心 2021-02-04 19:38

I was just digging around in the commons-io library and found this:

Keeps track of files awaiting deletion, and deletes them when
an associated marker object is recla         


        
2条回答
  •  感情败类
    2021-02-04 20:22

    Not sure if this really answers your question, but the finalize() method of an object is called prior to its resources being reclaimed.

    Edit: Which means that you can send a message to another object to alert it, or something along those lines.

提交回复
热议问题