如何在类层次结构中获得较低类的对象

时间:2014-04-04 22:08:46

标签: java swing jframe

我正在尝试使用JButton方法使用点对象(移动)从GridLayout获取getComponentAt()。通过使用gridlayout的框架,我可以进行以下调用:

JButton button2 = frame.getComponentAt(move);

麻烦的是这两种类型是不兼容的。 button2是一个JButton,但frame.getComponentAt(move)是一个组件。我尝试编译时收到以下错误消息。

incompatible types
found   : java.awt.Component
required: javax.swing.JButton

我知道这两个来自同一个类层次结构,但JButton要低得多。 http://docs.oracle.com/javase/7/docs/api/java/awt/Component.html http://docs.oracle.com/javase/7/docs/api/javax/swing/JButton.html

如何从组件中取出JButton以便我可以指定此按钮?

2 个答案:

答案 0 :(得分:1)

你应该将你的组件转换为JButton:

JButton button2 = (JButton) frame.getComponentAt(move);

答案 1 :(得分:1)

您应首先检查此Component是否实际为JButton,然后将其投放到JButton中,如果是:{/ p>

Component c = frame.getComponentAt(move);
if (c instanceof JButton) {
    JButton button2 = (JButton) c; // component is a JButton
} else {
    ...  // component is not a JButton
}