D 语言 - 逻辑运算符

下表列出了D语言支持的所有逻辑运算符。 假设变量 A 为 1,变量 B 为 0,则 −

运算符 描述 示例
&& 称为逻辑与运算符。 如果两个操作数都非零,则条件为 true。 (A && B) 为 false。
|| 它被称为逻辑或运算符。 如果两个操作数中有任何一个非零,则条件为 true。 (A || B) 为 true。
! 它被称为逻辑非运算符。 用于反转其操作数的逻辑状态。 如果条件为 true,则逻辑 NOT 运算符将为 false。 !(A && B) 为 true。

示例

尝试以下示例来了解 D 编程语言中可用的所有逻辑运算符 −

import std.stdio;

int main(string[] args) {
   int a = 5;
   int b = 20;
   int c ;

   if ( a && b ) {
      writefln("Line 1 - Condition is true\n" );
   }
   if ( a || b ) {
      writefln("Line 2 - Condition is true\n" );
   }
   /* lets change the value of a and b */

   a = 0; 
   b = 10; 

   if ( a && b ) { 
      writefln("Line 3 - Condition is true\n" ); 
   } else { 
      writefln("Line 3 - Condition is not true\n" ); 
   } 
   
   if ( !(a && b) ) { 
      writefln("Line 4 - Condition is true\n" ); 
   } 
   return 0;
}

当你编译并执行上面的程序时,它会产生以下结果 −

Line 1 - Condition is true 
 
Line 2 - Condition is true
  
Line 3 - Condition is not true
  
Line 4 - Condition is true

❮ d_programming_operators.html