0

Jbutton で動作する JComboBox をどのようにセットアップできるのか疑問に思っています。JcomboBox で特定のオブジェクトを選択すると、ボタンが押されたときに計算が変わります。これは私がこれまでに持っているものですが、うまくいかないようで、何が問題なのかわかりません。

    //JComboBox objectList = new JComboBox();
    String[] objectStrings = { "Triangle", "Box", "Done" };
    JComboBox objectList = new JComboBox(objectStrings);
    //objectList.setModel(new DefaultComboBoxModel(new String[]{"Triangle", "Box", "Done"}));
    objectList.setSelectedIndex(0);
    final int object = objectList.getSelectedIndex();
    objectList.setBounds(180, 7, 86, 20);
    objectList.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            if (object == 2) {
                System.exit(0);
            }
        }
    });



    frmPrestonPalecekWeek.getContentPane().add(objectList);

    JButton btnCalculate = new JButton("Calculate!");
    btnCalculate.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) {
            String box;
            String done;
            Box a;
            Triangle b;
            b = new Triangle(Double.parseDouble(txtSidea.getText()), Double.parseDouble(txtSideb.getText()), Double.parseDouble(txtSidec.getText()));
            a = new Box(Double.parseDouble(txtSidea.getText()), Double.parseDouble(txtSideb.getText()), Double.parseDouble(txtSidec.getText()));
            if (object  == 0) {
            txtOutput.setText("this is the volume " + a.getVolume());
            }
            else if (object == 2) {
                System.exit(0);
            }

        }
4

1 に答える 1

3

final int object = objectList.getSelectedIndex()ボタンのアクション リスナーでは、コンボ選択が変更されても変更されないため、初期化中に設定されたインデックス ( ) を使用するのではなく、コンボ ボックスで選択された項目を確認する必要があります。この変数は としてもマークされていfinalます。

たとえば、次のようなことができます。

btnCalculate.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent arg0) {
       int selectedIndex = objectList.getSelectedIndex();
       if (selectedIndex == 0) {
           ...
       } else if selectedIndex == 2) {
          ...       
       }
    }
}
于 2012-11-08T02:04:00.167 に答える