1

你好我有这个设置

private JButton btnFoo, btnBar;

我需要为每个按钮获取以下内容

        btnFoo = new JButton("Foo");
    btnFoo.addActionListener(this);
    add(btnFoo);

是否可以在 Java 中为我声明的每个按钮动态创建它?因为当我有 5 个按钮时,我不想要 3x5 = 15 行代码,而只需要几行动态创建的按钮。

4

3 回答 3

6

编写一个小循环并将您的按钮存储在一个数组中:

private JButton buttons[] = new JButton[5];

String names[] = {"Foo", "Bar", "Baz", "Fob", "Bao"};
for (int i = 0; i < buttons.length; ++i)
{
    JButton btn = new JButton(names[i]);
    btn.addActionListener(this);
    add(btn);
    buttons[i] = btn;
}
于 2013-09-04T11:45:04.810 回答
2

这就是数组和循环提供帮助的地方。使用按钮数组并对其进行迭代。但是,如果您担心标识符,那么 usingHashMap<String, JButton>可能是一个好方法。

Map<String, JButton> buttons = new HashMap<String, JButton>();
map.put("fooButton", new JButton());
...

通过遍历条目集(只需几行代码),ActionListener为按钮设置 。

于 2013-09-04T11:38:24.640 回答
1
        boton1= new JButton();
        boton1.setText(" Calcular ");
        add(boton1);
        boton1.setActionCommand("Calcular");
        boton1.addActionListener(this);
        boton1.setEnabled(true);

        String nB2="boton";


        for(int j=2; j<4; j++){
            JButton botonGenerico = new JButton(nB2+j);
            botonGenerico.setText("Calcular"+j);
            add(botonGenerico);
            botonGenerico.setActionCommand("Calcular"+j);
            botonGenerico.addActionListener(this);
            botonGenerico.setEnabled(true);


        }

public void actionPerformed(ActionEvent e){
    String a = e.getActionCommand();

    if(a.equals("Calcular")){
        JOptionPane.showMessageDialog(null, "¡boton 1");

        }
    if(a.equals("Calcular2")){
        JOptionPane.showMessageDialog(null, "¡boton 2");

        }
    if(a.equals("Calcular3")){
        JOptionPane.showMessageDialog(null, "¡boton 3");

        }

}
于 2015-10-27T17:28:55.717 回答