“Как удалить объект на Java” Ответ

Как удалить объект на Java

You should remove the references to it by assigning null or leaving the block where it was declared. After that, it will be automatically deleted by the garbage collector (not immediately, but eventually).

Example 1:

Object a = new Object();
a = null; // after this, if there is no reference to the object,
          // it will be deleted by the garbage collector
Example 2:

if (something) {
    Object o = new Object(); 
} // as you leave the block, the reference is deleted.
  // Later on, the garbage collector will delete the object itself.
Not something that you are currently looking for, but FYI: you can invoke the garbage collector with the call System.gc()
Delta Sierra

Java удалить объект

Select the object with mouse. Press 'alt' + 'f4'.
Bredo

Ответы похожие на “Как удалить объект на Java”

Вопросы похожие на “Как удалить объект на Java”

Больше похожих ответов на “Как удалить объект на Java” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования