23.11.2017 Views

java_tutorial

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Java<br />

c /= a = 1<br />

c %= a = 5<br />

c = 2 = 5<br />

c >>= 2 = 1<br />

c &= a = 0<br />

c ^= a = 10<br />

c |= a = 10<br />

Miscellaneous Operators<br />

There are few other operators supported by Java Language.<br />

Conditional Operator ( ? : )<br />

Conditional operator is also known as the ternary operator. This operator consists of<br />

three operands and is used to evaluate Boolean expressions. The goal of the operator is<br />

to decide, which value should be assigned to the variable. The operator is written as:<br />

variable x = (expression) ? value if true : value if false<br />

Following is an example:<br />

public class Test {<br />

public static void main(String args[]){<br />

int a, b;<br />

a = 10;<br />

b = (a == 1) ? 20: 30;<br />

System.out.println( "Value of b is : " + b );<br />

}<br />

}<br />

b = (a == 10) ? 20: 30;<br />

System.out.println( "Value of b is : " + b );<br />

This will produce the following result:<br />

Value of b is : 30<br />

Value of b is : 20<br />

57

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!