Java程序用来将整数转换为布尔值,并指定转换的值
为了将一个整数转换为布尔值,我们使用了下列整数对象。
Integer one = 1; Integer two = 1; Integer three = 0;
我们使用了嵌套的 if-else 语句来显示真或假值。这里,“one” 值与 “two”相同,即 1;因此,下列 else-if 语句有效。
else if (one.equals(two)) { System.out.println(true); }
上述语句显示 “真”,以这种方式,我们转换了整型到布尔型。
让我们看一个完整示例,了解如何将整数转换为布尔值。
示例
public class Demo { public static void main(String[] args) { Integer one = 1; Integer two = 1; Integer three = 0; // Integer to Boolean if (one == null) { if (two == null) { System.out.println(true); } else if (three == null) { System.out.println(false); } } else if (one.equals(two)) { System.out.println(true); } else if (one.equals(three)) { System.out.println(false); } } }
输出
True
广告