我想将字符串转换为boolean,如下所示:
class Converting{
public static void main(String[] args){
int x = 5;
String text = "x == 4"; //This must be false
System.out.println(text);
}
}
我该怎么做?它非常需要我。
答案 0 :(得分:0)
你错了。
String,int,boolean是java的数据类型。
表示存储数据的格式。
String x ="4";
表示x的数据类型为String,值为4.
提出你的问题。你必须初始化布尔值并设置它的变量以获得 true false 结果。
Boolean b; // bydeafult it will be always false;
System.out.println(b); //will give you false;
现在设置if if else得到真假
int x = 5; //initiated int and assigned a class variable to x.
int y = 4;
if(y != x){ // it mean if 4 is not equal to 5
b = false; // here = mean assinging
}
else{
b = true;
}
System.out.println(b); // it will print `true false a`ccording to the condition