JFrame 具有常见行为 - 组合还是继承?
我有三个类似的类,负责显示带有各种组件的秋千框架。它们都由 JFrame 组成,并包含相同的重复 setRandomLocation() 方法。为了摆脱它,我该怎么办?
- 保持每个人都喜欢的组合并使用 getRandomLocation() 创建一些 Util 类,
- 创建类似 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?
- Stay with preferred-by-everyone composition and create some Util class with getRandomLocation(),
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
getRandomLocation
是类的真实动词(例如setVisible
或dispose
),则应按照您的描述使用继承。如果该方法只是生成随机坐标来放置框架,则它应该在另一个类中,而不是在框架中。If
getRandomLocation
is a real verb of your classes (likesetVisible
ordispose
), 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.