gpt4 book ai didi

java - 如何在if else语句中覆盖java中的变量值

转载 作者:行者123 更新时间:2023-12-02 04:10:09 29 4
gpt4 key购买 nike

嘿伙计们, 简单的代码。我在java中新输入,我想在else语句中再次显示输入消息并覆盖num1变量。但是我面临“重复的局部变量字符串a和num1”的消息。请建议最佳解决方案。这是我的代码

String a =JOptionPane.showInputDialog("Please enter  the first Number :");      
int num1=Integer.parseInt(a);
int con1=JOptionPane.showConfirmDialog(null,num1);
if(con1==JOptionPane.YES_OPTION)
{
JOptionPane.showMessageDialog(null,num1);
}
else{

String a=JOptionPane.showInputDialog("Pleaee enter the first Number :");
int num1=Integer.parseInt(w);

}

最佳答案

您在代码中声明了变量“a”和 num1 两次,您可以创建具有不同名称的变量或尝试下面的代码来修复错误。

String a =JOptionPane.showInputDialog("Please enter  the first Number :");      
int num1=Integer.parseInt(a);
int con1=JOptionPane.showConfirmDialog(null,num1);
if(con1==JOptionPane.YES_OPTION)
{
JOptionPane.showMessageDialog(null,num1);
}
else{

a=JOptionPane.showInputDialog("Pleaee enter the first Number :");
num1=Integer.parseInt(w);
}

关于java - 如何在if else语句中覆盖java中的变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33871760/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com