D 编程 - 逻辑运算符


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

操作员 描述 例子
&& 它称为逻辑与运算符。如果两个操作数均非零,则条件为真。 (A && B) 是错误的。
|| 它称为逻辑或运算符。如果两个操作数中的任何一个非零,则条件为真。 (A || B) 为真。
它被称为逻辑非运算符。用于反转其操作数的逻辑状态。如果条件为真,则逻辑 NOT 运算符将为假。 !(A && B) 为真。

例子

尝试以下示例来了解 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.htm