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

そこで役立つのが配列とループです。ボタン配列を使用して、それを反復処理します。しかし、識別子について心配している場合は、使用HashMap<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 に答える