0

私は内部クラスを使用して練習していますが、宿題の質問に苦労しています:それは次のとおりです:

JPanelを拡張し、「One」、「Two」、および「Three」というラベルの付いた3つのJbuttonインスタンスを持つSwingコンポーネントクラスBetterButtonsを作成します。BetterButtonsのコンストラクターで、ActionListenerを実装するローカルクラスButtonListenerを記述します。このローカルクラスには、フィールドString名と、フィールド名に割り当てるStringパラメーターを受け取るコンストラクターがあります。メソッドvoidactionPerformedは、nameというラベルの付いたボタンが押されたことを示す通知をコンソールに出力します。BetterButtonsのコンストラクターで、アクションをリッスンするボタンごとに1つずつ、ButtonListenerの3つのインスタンスを作成します。

ほぼ終了しましたが、次の行で不正な式の開始エラーが発生します。

 public void actionPerformed(ActionEvent e){

これが私のコードです:

import java.awt.*;
import javax.swing.*;
import java.awt.event.*;

public class BetterButtons extends JPanel {
JButton one, two, three;
JPanel p;
public BetterButtons() {
    class ButtonListener implements ActionListener {
        String name;
        *****public ButtonListener(String name) {****
                public void actionPerformed(ActionEvent e){
                    System.out.println("Button "+name+"has been pressed.");
                }
              }
          }
    one = new JButton("One");
    two = new JButton("Two");
    three = new JButton("Three");
    one.addActionListener(new ButtonListener());
    two.addActionListener(new ButtonListener());
    three.addActionListener(new ButtonListener());
    p = new JPanel();
    p.add(one);
    p.add(two);
    p.add(three);
    this.add(p);
}
  public static void main(String[] args) {
    JFrame f = new JFrame("Lab 2 Exercise 2");
    BetterButtons w = new BetterButtons();
    f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    f.getContentPane().setLayout(new FlowLayout());
    f.getContentPane().add(w);
    f.pack();
    f.setVisible(true);
}
}

また、文字列変数名に割り当てられる適切な値を参照するにはどうすればよいですか?

前もって感謝します

4

1 に答える 1

1

buttonListener の定義は次のようにする必要があると思います。

class ButtonListener implements ActionListener {
    String name;
    public ButtonListener(String name) {
            this.name = name;
     }
     public void actionPerformed(ActionEvent e){
                System.out.println("Button "+name+"has been pressed.");
     }

  }

そして、buttonlistener の各インスタンス化に名前を渡します。例:

  one.addActionListener(new ButtonListener("one"));
于 2010-02-10T05:26:50.227 に答える