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.
我的 java 游戏中有对象奖励。当物件英雄接触到物件加成时,物件加成必须被销毁,从屏幕上消失,不占用内存。怎么做?
在此先感谢您的帮助。
只需将它们从可用奖励对象的集合中删除。
java VM 稍后将检测到没有更多对奖励对象的引用,并将释放内存。
如果您有数十万个这样的对象,将它们显式设置为 将有助于null更快地释放内存。
null