java try的方法使用
publicvoidreturnmenu(){//按0菜单返回System.out.println("输入0返回菜单");Scannersc=newScanner(Sys...
public void returnmenu(){//按0菜单返回
System.out.println("输入0返回菜单");
Scanner sc=new Scanner(System.in);
int i=sc.nextInt();
while(true){
try{
i=sc.nextInt();
if(i==0);
Facemain ();
}catch(InputMismatchException e){
System.out.println("请输入0");
i=sc.nextInt();
}
}
现在我想输入0返回上一层。。如果输出非0的数或者字母判定重新输入。。。求大神指点 展开
System.out.println("输入0返回菜单");
Scanner sc=new Scanner(System.in);
int i=sc.nextInt();
while(true){
try{
i=sc.nextInt();
if(i==0);
Facemain ();
}catch(InputMismatchException e){
System.out.println("请输入0");
i=sc.nextInt();
}
}
现在我想输入0返回上一层。。如果输出非0的数或者字母判定重新输入。。。求大神指点 展开
3个回答
展开全部
应当用while循环,当输入不满足非0数字,要提示重复输入。
String i = sc.next();
while("0".equals(i) || i.matches("\\D+")){ //\\D+ 表示1-n个非数字
System.out.println("请重新输入:")
i = sc.next();
}
// 到这里就是非0的数字了
另外,你用try catch也可以
while(true){
try{
i=sc.nextInt();
if(i==0){
throw new RuntimeException();
}
Facemain ();
break; //非0数字跳出
}catch(Exception e){
System.out.println("请输入0");
i=sc.nextInt();
}
String i = sc.next();
while("0".equals(i) || i.matches("\\D+")){ //\\D+ 表示1-n个非数字
System.out.println("请重新输入:")
i = sc.next();
}
// 到这里就是非0的数字了
另外,你用try catch也可以
while(true){
try{
i=sc.nextInt();
if(i==0){
throw new RuntimeException();
}
Facemain ();
break; //非0数字跳出
}catch(Exception e){
System.out.println("请输入0");
i=sc.nextInt();
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
try catch是异常捕获机制,你try catch中间的代码没有任何异常肯定不会走catch里面的方法
你要的效果直接
if(i==0){
Facemain ();
}else{
System.out.println("请输入0");
i=sc.nextInt();
}
你要的效果直接
if(i==0){
Facemain ();
}else{
System.out.println("请输入0");
i=sc.nextInt();
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果你写的这段代码有可能会抛出异常,那么就需要try-catch-finally来对这个异常进行处理
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询