-1

我是java的新手

我的程序有 4 个 JRadiobuttons(button1、button2、button3、button4)和 1 个 Button(b),当我点击 (b) 时,现在我想在 4 个 JRadioButton 上显示随机 int

1.****比较(通过单击b)button1的int(值)与button2,我该怎么做?

2.****如果button1的int大于button2,文本应该显示“button2 is greater”

   b.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent e) 
        {
            if(e.getSource()==button2) 
            {
               if(button1==button2)

               some idea for me??

            }}

感谢你们对我的帮助

4

1 回答 1

0

你真的想要 JRadioButtons 吗?你不觉得标签更合适吗?
你的第二点:我认为你的意思是当 button2 的值更大时显示 button2 更大

@Override
        public void actionPerformed(ActionEvent e) 
        {
        button1value = Integer.parseInt(button1.getText());
        button2value = Integer.parseInt(button2.getText());
        if(button1value<button2value){
            txtLoc.setText("Button 2 is greater");
        }
}
于 2014-06-18T07:24:26.867 回答