按下相应按钮时数字未出现在框中的问题
Issue with numbers not appearing in box when respective button is pressed
我正在 GUI 中制作一个简单的计算器,我已经输入并准备好所有代码,但是我在制作它时遇到了麻烦,以便当用户按下数字按钮时,相应的数字会出现在文本中上面的框。我需要使用单选按钮吗?提前致谢
我试过动作侦听器,但它们没有用(或者我可能使用不当)。我已经放置了 1 按钮的代码。
JButton num1 = new JButton("1");
num1 = b1;
num1.setSize(50,50);
num1.setLocation(20,200);
num1.setBackground(Color.WHITE);
num1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
只需将数字附加到 actionPerformed
函数中的 JTextField
(使用 setText(String)
和 getText()
)。
我正在 GUI 中制作一个简单的计算器,我已经输入并准备好所有代码,但是我在制作它时遇到了麻烦,以便当用户按下数字按钮时,相应的数字会出现在文本中上面的框。我需要使用单选按钮吗?提前致谢
我试过动作侦听器,但它们没有用(或者我可能使用不当)。我已经放置了 1 按钮的代码。
JButton num1 = new JButton("1");
num1 = b1;
num1.setSize(50,50);
num1.setLocation(20,200);
num1.setBackground(Color.WHITE);
num1.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
只需将数字附加到 actionPerformed
函数中的 JTextField
(使用 setText(String)
和 getText()
)。