gpt4 book ai didi

java - 如果输入不是字符串,则返回错误消息

转载 作者:行者123 更新时间:2023-12-01 18:18:38 24 4
gpt4 key购买 nike

我正在尝试构建一个要求输入两次的应用程序。先是整数,后是字符串。

一旦用户为字符串预期输入输入整数,我希望它返回错误消息,反之亦然。如果用户在要求输入整数时输入字符串,我会返回错误消息,但是如果用户在代码要求输入字符串时输入整数,我会遇到返回错误消息的问题。

这是我到目前为止的代码:

do {
System.out.print("Input account number : ");
input = s.nextLine();
}

while (!isDigit(input));
int acct = Integer.parseInt(input);

System.out.print("Input account name : ");
String name = s.nextLine();

最佳答案

编辑:这将允许接受“34f”等输入。如果你想禁止[0-9],你应该使用正则表达式或查看String.contains()是否为[0-9]。

您可以检查某个 String 是否可以转换为 int - 如果不能,请将其标记为成功条件。

import java.util.Scanner;

public class Test {

/**
* Main.
* @param args
*/
public static void main(String[] args) {
String s;

Scanner in = new Scanner(System.in);
System.out.print("Don't enter a number: ");
s = in.nextLine();

if(isInt(s)) {
System.out.println("Seriously? That was a number.");
} else {
System.out.println("Not a number - thanks!");
}

in.close();
}

/**
* Accept a String and return true if it can be parsed as an int.
* @param s
* @return
*/
public static boolean isInt(String s) {
boolean res;

try {
Integer.parseInt(s);
res = true;
} catch (NumberFormatException e) {
res = false;
}

return res;
}
}

关于java - 如果输入不是字符串,则返回错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60319810/

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