gpt4 book ai didi

java - Java中将输入作为字符串并限制用户不能输入整数

转载 作者:行者123 更新时间:2023-11-30 05:57:46 24 4
gpt4 key购买 nike

我想将输入作为Java中的字符串并使用try catch限制用户不输入整数。

import java.util.*;

public class trycatch {

public static void main(String args[]) {

Scanner sc=new Scanner(System.in);
String a;

System.out.println("\n\nEnter the name");

try {
a=sc.nextLine();

System.out.println("You name is "+a);
}

catch(InputMismatchException b) {
System.out.println("There is problem with your input");
}
}
}

最佳答案

测试是否为int,如果不是则抛出异常

a=sc.nextLine(); 
Integer.valueOf(a); // throws NumberFormatException

// this is number so go to top of loop
continue;
} catch(NumberFormatException b) {
System.out.println("There is NO problem with your input");
// we can use `a` out side the loop
}

关于java - Java中将输入作为字符串并限制用户不能输入整数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52867339/

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