Java - Boolean logicalOr() 方法



描述

Java Boolean logicalOr() 方法返回将逻辑或运算符应用于指定的布尔操作数的结果。

声明

以下是 java.lang.Boolean.logicalOr(boolean a, boolean b) 方法的声明

public static boolean logicalOr​(boolean a, boolean b)

参数

a − 第一个操作数

b − 第二个操作数

返回值

此方法返回 a 和 b 的逻辑或。

异常

在两个值为 true 的布尔值上计算逻辑或示例

以下示例演示了在 true 和 true 值上使用 Boolean logicalOr() 方法。在此程序中,我们创建了两个布尔变量并为其分配了 true 值。然后,我们使用 logicalOr() 方法对这两个布尔变量进行了逻辑或运算并获取了结果。最后,打印结果。

package com.tutorialspoint;

public class BooleanDemo {
   public static void main(String[] args) {

      // create 3 boolean variables
      boolean b1, b2, result;
      
      // assign value to b1, b2
      b1 = true;
      b2 = true;
      
      // perform the logical OR operation
      result = Boolean.logicalOr(b1, b2);	  
      
      // print result
      System.out.println( "b1: " + b1 + " OR b2: " + b2 +", b1 OR b2: " + result );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

b1: true OR b2: true, b1 OR b2: true

在两个布尔值(一个为 true,一个为 false)上计算逻辑或示例

以下示例演示了在 true 和 false 值上使用 Boolean logicalOr() 方法。在此程序中,我们创建了两个布尔变量并为其分配了 true 和 false 值。然后,我们使用 logicalOr() 方法对这两个布尔变量进行了逻辑或运算并获取了结果。最后,打印结果。

package com.tutorialspoint;

public class BooleanDemo {
   public static void main(String[] args) {

      // create 3 boolean variables
      boolean b1, b2, result;
      
      // assign value to b1, b2
      b1 = true;
      b2 = false;
      
      // perform the logical OR operation
      result = Boolean.logicalOr(b1, b2);	  
      
      // print result
      System.out.println( "b1: " + b1 + " OR b2: " + b2 +", b1 OR b2: " + result );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

b1: true OR b2: false, b1 OR b2: true

在两个值为 false 的布尔值上计算逻辑或示例

以下示例演示了在 false 和 false 值上使用 Boolean logicalOr() 方法。在此程序中,我们创建了两个布尔变量并为其分配了 false 值。然后,我们使用 logicalOr() 方法对这两个布尔变量进行了逻辑或运算并获取了结果。最后,打印结果。

package com.tutorialspoint;

public class BooleanDemo {
   public static void main(String[] args) {

      // create 3 boolean variables
      boolean b1, b2, result;
      
      // assign value to b1, b2
      b1 = false;
      b2 = false;
      
      // perform the logical OR operation
      result = Boolean.logicalOr(b1, b2);	  
      
      // print result
      System.out.println( "b1: " + b1 + " OR b2: " + b2 +", b1 OR b2: " + result );
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

b1: false OR b2: false, b1 OR b2: false
java_lang_boolean.htm
广告