Java : Ternary Operation
In this article, we are going to discuss a quick and efficient operation used in most programming languages. This operation is known as a Ternary Operation.
We are commonly using if, else, else if, switch case operation to handle our conditional tasks. Ternary operation is also one of the conditional operations introduced by programming languages.
First of all, I would like to introduce the structure of this operator in java.
variable var1 = (condition) ? (value If True):(value If False)
Variable
Condition
Return Values
class Ternary{
public static void main(String args[]) {
int score;
String result;
score=75;
result = (score>=50) ? ("Passed") : ("Failed");
System.out.println(result);
score=30;
result = (score>=50) ? ("Passed") : ("Failed");
System.out.println(result);
}
}
Passed
Failed
Grading Students Mark Using If, else, else if Condition :
class Ternary{
public static void main(String args[]) {
int score;
String result;
score=67;
if(score>=75){
result = "A";
}
else if(score>=65){
result = "B";
}
else if(score>=55){
result = "C";
}
else if(score>=40){
result = "S";
}
else{
result = "F";
}
System.out.println(result);
}
}
Grading Students Mark Using Ternary Operation :
class Ternary{
public static void main(String args[]) {
int score;
String result;
score=30;
result=(score>=75)?"A":
(score>=65)?"B":
(score>=55)?"C":
(score>=40)?"S":"W";
System.out.println(result);
}
}
Now you can see that codes can be shrunk using ternary operation.
Conclusion
Line by line we came to the end of the article. In this we discussed,Introduction to Ternary
Structure of Ternary
Main Parts Ternary
Sample code using Ternary
Comparing If and Ternary.
I hope that this article was helpful to you. Thank you for reading.
Happy Coding 🙌