Hibernate Tutorial

(Brent) #1

TUTORIALS POINT


This would produce the following result:


a & b = 12
a | b = 61
a ^ b = 49
~a =- 61
a << 2 = 240
a >> 15
a >>> 15

The Logical Operators:


The following table lists the logical operators:


Assume Boolean variables A holds true and variable B holds false, then:


Operator Description Example

&&


Called Logical AND operator. If both the operands are non-zero, then the
condition becomes true.
(A && B) is false.

||


Called Logical OR Operator. If any of the two operands are non-zero,
then the condition becomes true.
(A || B) is true.

!


Called Logical NOT Operator. Use to reverses the logical state of its
operand. If a condition is true then Logical NOT operator will make false.
!(A && B) is true.

Example


The following simple example program demonstrates the logical operators. Copy and paste the following Java
program in Test.java file and compile and run this program:


public class Test{

public static void main(String args[]){
boolean a =true;
boolean b =false;

System.out.println("a && b = "+(a&&b));

System.out.println("a || b = "+(a||b));

System.out.println("!(a && b) = "+!(a && b));
}
}

This would produce the following result:


a && b =false
a || b =true
!(a && b)=true

The Assignment Operators:


There are following assignment operators supported by Java language:


Operator Description Example
Free download pdf