Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

The Logical Operators

The following table lists the logical operators −

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

Show Examples

Operator Description Example

Called Logical AND operator. If both the operands


&& (logical and) (A && B) is false
are non-zero, then the condition becomes true.

Called Logical OR Operator. If any of the two


|| (logical or) operands are non-zero, then the condition (A || B) is true
becomes true.

Called Logical NOT Operator. Use to reverses the


! (logical not) logical state of its operand. If a condition is true !(A && B) is true
then Logical NOT operator will make false.

The Assignment Operators


Following are the assignment operators supported by Java language −

Show Examples

Operator Description Example

Simple assignment operator. Assigns values from right C = A + B will


= side operands to left side operand. assign value of A +
B into C

Add AND assignment operator. It adds right operand C += A is


+= to the left operand and assign the result to left equivalent to C = C
operand. +A
Subtract AND assignment operator. It subtracts right C -= A is
-= operand from the left operand and assign the result to equivalent to C = C
left operand. –A

Multiply AND assignment operator. It multiplies right C *= A is


*= operand with the left operand and assign the result to equivalent to C = C
left operand. *A

Divide AND assignment operator. It divides left C /= A is


/= operand with the right operand and assign the result equivalent to C = C
to left operand. /A

Modulus AND assignment operator. It takes modulus C %= A is


%= using two operands and assign the result to left equivalent to C = C
operand. %A

C <<= 2 is same
<<= Left shift AND assignment operator.
as C = C << 2

C >>= 2 is same
>>= Bitwise AND assignment operator.
as C = C >> 2

C &= 2 is same as
&= Right shift AND assignment operator.
C=C&2

bitwise exclusive OR and assignment operator. C ^= 2 is same as


^=
C=C^2

bitwise inclusive OR and assignment operator. C |= 2 is same as


|=
C=C|2

Miscellaneous Operators
There are few other operators supported by Java Language.

Conditional Operator ( ? : )
Conditional operator is also known as the ternary operator. This operator consists of
three operands and is used to evaluate Boolean expressions. The goal of the operator is
to decide, which value should be assigned to the variable. The operator is written as −

variable x = (expression) ? value if true : value if false

You might also like