多个 JInternalFrame 之间的共享对象

发布于 2024-08-21 21:40:01 字数 141 浏览 7 评论 0原文

在单个 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 技术交流群。

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

发布评论

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

评论(1

未央 2024-08-28 21:40:01

我会避开单例(因为它类似于使用全局变量 - 请参阅此处了解描述)并改为子类 JInternalFrame 来包含对共享数据对象的引用;例如,

public class MyInternalFrame extends JInternalFrame {
  private final SharedData data;

  public MyInternalFrame(SharedData data) {
    this.data = data;
  }
}

显然,尽管有多个对 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.

public class MyInternalFrame extends JInternalFrame {
  private final SharedData data;

  public MyInternalFrame(SharedData data) {
    this.data = data;
  }
}

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.

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