垃圾收集是自动工作还是手动工作?

Garbage Collection works automatically or manually?

我想问一下 Java 程序中垃圾收集器是自动删除未使用的对象还是应该通过将对象分配给 null 来手动完成?

来自here

In a programming language like C, allocating and deallocating memory is a manual process. In Java, process of deallocating memory is handled automatically by the garbage collector.

我建议您阅读全文。您将很好地掌握 GC 在 Java 中的工作原理。 HTH.