gpt4 book ai didi

java - 字符串作为 boolean 值

转载 作者:行者123 更新时间:2023-11-30 04:04:10 26 4
gpt4 key购买 nike

我正在用 Java 制作电子表格。

我想复制 Microsoft Excel 函数 ISLOGICAL。它检查一个值是否为逻辑值(TRUE 或 FALSE),并返回 TRUE 或 FALSE。

所有单元格都是字符串数组。这就是我现在拥有的:

public static String islogical(String[] value){
String err = "#ERROR!";
if (value.length != 1){
return err;
}

boolean a = false;

try{
a = Boolean.parseBoolean(value[0]);
}
catch(IllegalArgumentException e){return err;}

String ans = "FALSE";

if(a){
ans = "TRUE";
return ans;
}
else{
return ans;
}

}

我不明白为什么,如果我的字符串值=“8>3”,它不会返回true。除字符串 = true 之外的所有输入都会返回 false

最佳答案

I don't understand why, if my 'string value = "8>3"', that it doesn't give me back 'true'

发生这种情况是因为 parseBoolean() 不计算表达式。

来自Javadoc :

Parses the string argument as a boolean. The boolean returned represents the value true if the string argument is not null and is equal, ignoring case, to the string "true".

Example: Boolean.parseBoolean("True") returns true.

Example: Boolean.parseBoolean("yes") returns false.

关于java - 字符串作为 boolean 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21172880/

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