作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嘿伙计们, 简单的代码。我在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/
我是一名优秀的程序员,十分优秀!