要将int转换为布尔值,让我们首先取以下int。int one = 1; int two = 1; int three = 0;我们有嵌套的if-else语句来显示true或false值。这里,值“one”与“two”相同,即1;因此,以下内容有效−else if (one.equals(two)) { System.out.println(true); }以上显示“true”,这样我们就将int转换为了布尔值。现在让我们看看完整的示例,了解如何将int转换为布尔值。示例 在线演示public class Demo { public static void main(String[] args) { int one = 1; ... 阅读更多