instanceof java
Posts: 576
Nickname: instanceof
Registered: Jan, 2015
instanceof java is a java related one.
Ternary operator in java
Posted: Apr 27, 2016 3:58 AM
This post originated from an RSS feed registered with Java Buzz
by instanceof java.
Original Post: Ternary operator in java
Feed Title: Instance Of Java
Feed URL: http://feeds.feedburner.com/blogspot/TXghwE
Feed Description: Instance of Java. A place where you can learn java in simple way each and every topic covered with many points and sample programs.
Latest Java Buzz Posts
Latest Java Buzz Posts by instanceof java
Latest Posts From Instance Of Java
Advertisement
Ternary operator also known as conditional operator in java. Ternary operator used to evaluate boolean expression and it consists of three operands.
Ternary operator in java syntax: variable x = (expression) ? value if true : value if false Value of x will be decided based on the condition. if condition is true then it assigns first value to the variable If Expression is false then it assigns second value to the variable. Java simple example program on ternary operator / conditional operator in java package operatorsinjava; public class TernaryOperator { /** * @ www.instanceofjava.com * */ public static void main(String[] args) { // checking condition 2>3 and if true assign 3 else 3 int x= (2>3)?3:2; System.out.println(x); // checking condition 5<4 if true assign 4 else 3 int y= (5<4)?4:3; System.out.println(y); } } Output: Ternary operator in java for boolean: Java simple example program on ternary operator / conditional operator for boolean package operatorsinjava; public class TernaryOperator { /** * @ www.instanceofjava.com * */ public static void main(String[] args) { boolean x= true ? true: false; System.out.println(x); boolean y= false ? true : false; System.out.println(y); boolean z= false ? false : true; System.out.println(z); } } Output: Ternary operator in java for Strings: Java simple example program on ternary operator / conditional operator for String package operatorsinjava; public class TernaryOperatorForStrings{ /** * @ www.instanceofjava.com * */ public static void main(String[] args) { String str= "java".equals("java") ? "Java Questions" : "Java Programs"; System.out.println(str); String str1= (1==3)? "its true" : "its false"; System.out.println(str1); } } Output: Ternary operator in java for null; Java simple example program on ternary operator / conditional operator for null check package operatorsinjava; public class TernaryOperatorForStrings{ /** * @ www.instanceofjava.com * */ public static void main(String[] args) { String str= null; String str1= (str==null) ? "its true" : "its false"; System.out.println(str1); String str2= (str1!=null) ? "its true" : "its false"; System.out.println(str2); } } Output:
Read: Ternary operator in java