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.
我在某处读到垃圾收集不像破坏(在 C++ 意义上)。它们有何不同?
C++ 销毁是确定性的,垃圾收集不是。
在 C++ 中,您可以保证何时调用析构函数,而在 Java 中根本没有这样的保证。事实上,你的析构函数可能永远不会在 Java 中被调用。