JFrame 具有常见行为 - 组合还是继承?

发布于 2024-10-01 22:20:55 字数 269 浏览 2 评论 0原文

我有三个类似的类,负责显示带有各种组件的秋千框架。它们都由 JFrame 组成,并包含相同的重复 setRandomLocation() 方法。为了摆脱它,我该怎么办?

  1. 保持每个人都喜欢的组合并使用 getRandomLocation() 创建一些 Util 类,
  2. 创建类似 RandomLocatedFrame 扩展 JFrame 的东西,然后使用此类作为我的类的基础 - 但是这种添加的行为是否足以证明使用继承是合理的?

预先感谢您的任何建议。

I have three similar classes responsible for displaying swing frame with various components. They all are composed with JFrame and contain the same duplicating setRandomLocation() method. In order to get rid of it, what should I do?

  1. Stay with preferred-by-everyone composition and create some Util class with getRandomLocation(),
  2. Create something like RandomLocatedFrame extending JFrame, and then use this class as a base for my classes - but is such added behaviour enough to justify using inheritance?

Thanks in advance for any suggestions.

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

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

发布评论

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

评论(1

尛丟丟 2024-10-08 22:20:55

如果 getRandomLocation 是类的真实动词(例如 setVisibledispose),则应按照您的描述使用继承。如果该方法只是生成随机坐标来放置框架,则它应该在另一个类中,而不是在框架中。

If getRandomLocation is a real verb of your classes (like setVisible or dispose), you should use inheritance as you described. If the method just generates random coordinates to put the frame, it should be in another class, not in a frame.

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