简体   繁体   English

如何确定按钮已选中?

[英]How do I make sure that the button is checked?

The assignment is a basic voting system of picking between 3 people or 4th button is a "decline to answer" 分配是在3个人之间进行选择的基本投票系统,或者第4个按钮是“拒绝回答”

I keep getting errors such as "Cannot find symbol" 我不断收到诸如“找不到符号”之类的错误

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

public class Vote
{
    JLabel  label;

    public static void main (String[] args)

    {
        Vote sr = new Vote();
    }

    public Vote ()
    {

        JFrame frame = new JFrame("Please Choose your next President:");
        JRadioButton one = new JRadioButton("Name 1");
        JRadioButton two = new JRadioButton("Name 2");
        JRadioButton three = new JRadioButton("Name 3");
        JRadioButton four = new JRadioButton("I decline to answer");

        JPanel panel = new JPanel();
        panel.add(one);
        panel.add(two);
        panel.add(three);
        panel.add(four);

        ButtonGroup but = new ButtonGroup();

        but.add(one);
        but.add(two);
        but.add(three);
        but.add(four);

        one.addActionListener(new MyAction());
        two.addActionListener(new MyAction());
        three.addActionListener(new MyAction());
        four.addActionListener(new MyAction());

        label = new JLabel("Please Select a Canidate for President ");
        label.setHorizontalAlignment(JLabel.CENTER);
        frame.add(panel, BorderLayout.NORTH);
        frame.add(label, BorderLayout.CENTER);
        frame.setSize(400, 100);
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    public class MyAction implements ActionListener

    {
        public void actionPerformed (ActionEvent e)

        {
            if (jRadioButton.isSelected())
            {
                label.setText(e.getActionCommand());
                JOptionPane.showMessageDialog(null, "You have selected " +

                e.getActionCommand()
                        + " as the new President. Thank you for voting.");
            }
            else
            {
                label.setText(e.getActionCommand());
                JOptionPane.showMessageDialog(null, "You have selected " +

                e.getActionCommand() + " Thank you for voting.");
            }
        }
    }
}

So basic functions is to pick a name from 4 available radio buttons and upon selection of any buttons, a new windows comes up saying thank you for voting. 因此,基本功能是从4个可用的单选按钮中选择一个名称,并在选择任何按钮后出现一个新窗口,说谢谢您的投票。

I would like to have different responses depending on the radio button pressed, so if a button pressed saying "I declined to answer" a proper response would be towards it. 我希望根据所按下的单选按钮有不同的响应,因此,如果按下一个按钮并说“我拒绝回答”,则将对此做出适当的响应。

Please check my If statement because i think where most of the errors are coming from and from a part of .isSelected . 请检查我的If语句,因为我认为大多数错误的.isSelected.isSelected的一部分。

if(jRadioButton.isSelected())

jRadioButton here is not defined. jRadioButton此处未定义。

You would want to get the source that triggered the event (ie one, two, three or four): 您可能想要获取触发事件的源(即,一,二,三或四):

if(((JRadioButton)e.getSource()).isSelected())

This gets the object that triggered the event, casts it as a JRadioButton, and checks if that radio button is selected. 这将获取触发事件的对象,将其强制转换为JRadioButton,并检查是否已选中该单选按钮。

That should at least get rid of your "Cannot find symbol" error. 那至少应该摆脱您的“找不到符号”错误。

You have no object named jRadioButton . 您没有名为jRadioButton对象。 try changing 尝试改变

jRadioButton.isSelected()

to

((JRadioButton)e.getSource()).isSelected()

Also if you want to check if 4th JRadioButton was selected, then do the following: 另外,如果要检查是否选择了第4个 JRadioButton ,则请执行以下操作:

four.setActionCommand("fourth");

and then in if statement 然后在if语句中

if ("fourth".equals(e.getActionCommand()) && ((JRadioButton)e.getSource()).isSelected())

it will check if action command maches fourth radio button and if it is selected 它将检查动作命令是否匹配了第四个单选按钮,以及是否已选择它

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM