Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当您像这样创建一个 GUI 元素(例如 JFrame)时
new JFrame(); // nothing pointing to it.
这是错误的,因为没有任何东西指向它,所以它将被垃圾收集。我意识到这很有效,但我想确保它一直有效,即使垃圾收集器运行。
您不需要保存引用该JFrame对象的引用变量(除非您以后想使用它)。您只需要调用构造函数JFrame(),窗口就会被构建。因此,在所有情况下,它都应该毫无问题地工作。
JFrame
JFrame()