我已经在stackoverflow上潜伏了一段时间。我自学Java,所以如果这是一个相当基本的问题请耐心等待(虽然我无法在这里找到答案)。
如果我有一个java类(如下所示),我希望在以后的类中以稍微不同的方式使用它(例如更改按钮文本/或输出),有没有办法通过扩展原班?
在下面的例子中,我有一个带有两个按钮的JFrame,它们将不同的文本打印到控制台。我只想在更改其中一个按钮名称时扩展此类。
原始类:
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class FrameIt extends JFrame implements ActionListener {
private static final long serialVersionUID = 1L;
public static void main(String[] args) {
new FrameIt().setVisible(true);
}
public FrameIt() {
super("Make a choice");
setSize(600, 600);
setResizable(false);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setLayout(new GridLayout());
JButton button = new JButton("Click Me.");
JButton button2 = new JButton("No, you should Click Me!");
button.addActionListener(this);
button2.addActionListener(this);
add(button);
add(button2);
}
@Override
public void actionPerformed(ActionEvent e) {
String name = e.getActionCommand();
if(name.equals("Click Me")){
System.out.println("That was actually the right choice.");
}else{
System.out.println("Poor choice.");
}
}
}
分类:
import javax.swing.JButton;
public class Alterations extends FrameIt{
private static final long serialVersionUID = 1L;
public static void main(String args[]){
new Alterations().setVisible(true);
System.out.println("Doing it");
}
public Alterations(){
JButton button2 = new JButton("Slightly different button");
}
}
感谢。
答案 0 :(得分:0)
在子类JButton
中创建Alterations
实例没有任何区别,因为您没有将其连接到任何内容。
处理它的一种方法是更改原始类的构造函数。您可以使按钮的名称来自方法调用:
更改:
JButton button2 = new JButton("No, you should Click Me!");
致:
JButton button2 = new JButton(getSecondButtonName ());
然后getSecondButtonName()
可以在原始类中返回"No, you should Click Me!"
,您可以在子类中覆盖它以返回"Slightly different button"
。
另一种方法是删除子类构造函数中的原始按钮并添加新按钮。
这些解决方案只有在首先创建子类的真正原因时才有意义。如果基类和子类之间的唯一区别是一个按钮的名称,则没有理由创建子类。