多个 JInternalFrame 之间的共享对象
在单个 JDesktopPane 上的多个 JInternalFrame 之间实现共享数据对象的最有效方法是什么?
不确定是否使用单例,或者我可以将数据对象放入 JDesktopPane 并从组件进行访问吗?我不想为每个帧(很多帧)保留该数据的单独实例
What's the most efficient method of implementing a shared data object between multiple JInternalFrames on a single JDesktopPane?
Not sure whether to go with singleton or can I put a data object in the JDesktopPane and access from a component? I don't want to keep separate instances of this data for each frame (lots of frames)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会避开单例(因为它类似于使用全局变量 - 请参阅此处了解描述)并改为子类 JInternalFrame 来包含对共享数据对象的引用;例如,
显然,尽管有多个对 SharedData 的引用(每个 MyInternalFrame 实例一个),系统中仍然只有一个
SharedData
对象;即您不会用这种方法复制数据。I would steer clear of singleton (as it's a-kin to using global variables - See here for a description) and instead subclass
JInternalFrame
to contain a reference to the shared data object; e.g.Obviously despite having multiple references to your SharedData (one per MyInternalFrame instance) there is still only one
SharedData
object in your system; i.e. you are not duplicating data with this approach.