Ternary Operator Example Java Program
Definition
Operators in Java are similar to those in C++. However, there is no delete operator due to garbage collection mechanisms in Java, and there are no operations on pointers since Java does not support them. At its most basic, the ternary operator (also known as the conditional operator) can be used as an alternative to the Java if/then/else syntax, but it goes beyond that, and can even be used on the right hand side of Java statements.Syntax
result = testCondition ? value1 : value2
Ternary Operator Example Program
public class TernaryOperator { public static void main(String args[]){ int num1 , num2; num1 = 10; num2 = (num1 == 1) ? 20: 30; System.out.println( "Value of num2 is : " + num2 ); num2 = (num1 == 10) ? 20: 30; System.out.println( "Value of num2 is : " + num2 ); } }
Sample Output
Output is: Value of num2 is : 30 Value of num2 is : 20
Operator Programs
- Addition Operator Example Java Program
- Division And Assignment Operator Example Java Program
- Modulus And Assignment Operator Example Java Program
- Equal To And Not Equal To Operator Example Java Program
- Greater Than Operator Example Java Program
- Lesser Than Operator Example Java Program
- Increment Operator Example Java Program
- Decrement Operator Example Java Program
- Logical And Operator Example Java Program
- Logical Or Operator Example Java Program
- Instance Of Operator Example Java Program
- Subtraction Operator Example Java Program
- Ternary Operator Example Java Program
- Multiplication Operator Example Java Program
- Division Operator Example Java Program
- Modulus Operator Example Java Program
- Assignment Operator Example Java Program
- Addition And Assignment Operator Example Java Program
- Subtraction And Assignment Operator Example Java Program
- Multiplication And Assignment Operator Example Java Program
Read More Articles
- Multiple Inheritance Using Interface Example Java Program
- Single Inheritance Example Java Program
- Multilevel Inheritance Example Java Program
- Hierarchical Inheritance Example Java Program
- Find all Substrings of a given string Example Java Program
- Create Matrix Example Java Program
- Sum Of Three Numbers Example Java Program
- Heap Sort Example Java Program
- Twin Prime Example Java Program
- Compile Time Polymorphism Example Java Program