我正在尝试使用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以便我可以指定此按钮?
答案 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
}