我正在制作一个计算器来测试我的 Java 技能。在我按下一个按钮来计算数字之前,如何让数字显示在 jTextfield 中;我希望每个数字都显示在文本字段中。例如,如果我按下 1 和零,我希望文本字段有 10。
int num;
JTextField in = new JTextField(20); // input field where numbers will up;
public void actionPerformed(ActionEvent e) {
if (e.getSource() == bouttons.get(0)) {
num = 0;
in.setText("" + num);
}
if (e.getSource() == bouttons.get(1)) {
int num = 1;
in.setText("" + num);
}
}