Java:观察者模式和垃圾收集器

发布于 2024-12-12 09:18:25 字数 249 浏览 1 评论 0原文

我已经实现了一个 TableModel,其寄存器启动 PropertyChangeEvents。我的 TableModel 侦听这些事件以触发 TableModelEvents 以便刷新底层 JTable。

如果 TableModel 被清除或使用新寄存器刷新... TableModel 是否可以在每个寄存器中调用“removePropertyChangeListener”方法,以便允许 GC 收集这些寄存器?

假设没有其他对这些寄存器的实时引用。

i have implemented a TableModel whose registers launch PropertyChangeEvents. My TableModel listen those events to fire TableModelEvents in order to refresh the underliying JTable.

If the TableModel is cleared or refreshed with new registers... has the TableModel to call the "removePropertyChangeListener" method in each register in order to allow the GC to collect those registers?

supose that there isn't another live reference to those registers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

彡翼 2024-12-19 09:18:25

不。寄存器对象具有对表模型的引用(通过侦听器)。因此,如果寄存器不再可达,它将被垃圾收集。

另一方面,如果您保持寄存器处于活动状态,但更改表模型而不将其作为侦听器从寄存器中删除,则寄存器将维护对旧模型的引用,并且该模型不会被垃圾收集。

让长寿命对象监听短寿命对象的变化通常是个好主意。如果是另一种方式,那么忘记删除侦听器会导致内存问题(除非使用弱引用来维护侦听器列表)

No. The register object has a reference to your table model (through the listener). So if the register is not reachable any more, it will be garbage collected.

On the other hand, if you keep the registers alive, but change the table model without removing it as listener from the registers, then the registers will maintain a reference to the old model, and the model won't be garbage collected.

It's usually a good idea to have long-lived objects listen to changes in short-lived objects. If it's the other way, then forgetting to remove listeners leads to memory problems (unless weak references are used for maintaining the list of listeners)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文