gpt4 book ai didi

java - 如何使用 return true 语句创建 boolean 方法

转载 作者:行者123 更新时间:2023-12-01 07:25:17 25 4
gpt4 key购买 nike

我需要创建一个 boolean 方法,它接受一个字符串并检查它是否是二进制数。如果它是二进制,则应返回 true,如果它包含 0 和 1 以外的任何内容,则返回 false。这是我的代码:

public static boolean CheckInputCorrect(String input) {
int len = input.length();
for(int i=0; i<len; i++)

if(input.charAt(i) == '1' || input.charAt(i) == '0') {
continue;
return true;
} else {
break;
return false;
}
}

我怀疑存在语法错误,但是无论我尝试什么,它都会发现错误。任何帮助将不胜感激!

最佳答案

检查每个字符,如果不是0或1,则立即返回false。如果遍历完所有字符,则返回true:

public static boolean CheckInputCorrect(String input) {
final int len = input.length();
for (int i = 0; i < len; i++) {
final char c = input.charAt(i);
if (c != '1' && c != '0') {
return false;
}
}
return true;
}

不需要 continuebreak 语句。当然不要在另一个语句之前使用 continuebreak;通常会生成“无法访问”编译器错误。

请注意,您还可以使用正则表达式来执行此测试:

public static boolean CheckInputCorrect(String input) {
return input.matches("[01]*");
}

如果要多次调用它,编译模式会更有效:

private static Pattern zerosOrOnes = Pattern.compile("[01]*");

public static boolean CheckInputCorrect(String input) {
return zerosOrOnes.matcher(input).matches();
}

关于java - 如何使用 return true 语句创建 boolean 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26130771/

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