Difference between revisions of "JAVA: Operator Relational dengan Contoh"
Onnowpurbo (talk | contribs) (Created page with "Operators constitute the basic building block to any programming language. Java too provides many types of operators which can be used according to the need to perform various...") |
Onnowpurbo (talk | contribs) |
||
Line 3: | Line 3: | ||
Types of Operators: | Types of Operators: | ||
− | Arithmetic | + | * Operator Arithmetic |
− | Unary | + | * Operator Unary |
− | Assignment Operator | + | * Operator Assignment |
− | Relational | + | * Operator Relational |
− | Logical | + | * Operator Logical |
− | Ternary Operator | + | * Operator Ternary |
− | Bitwise | + | * Operator Bitwise |
− | Shift | + | * Operator Shift |
+ | |||
Java Relational Operators are a bunch of binary operators used to check for relations between two operands, including equality, greater than, less than, etc. They return a boolean result after the comparison and are extensively used in looping statements as well as conditional if-else statements and so on. The general format of representing relational operator is: | Java Relational Operators are a bunch of binary operators used to check for relations between two operands, including equality, greater than, less than, etc. They return a boolean result after the comparison and are extensively used in looping statements as well as conditional if-else statements and so on. The general format of representing relational operator is: | ||
Syntax: | Syntax: | ||
− | variable1 relation_operator variable2 | + | variable1 relation_operator variable2 |
+ | |||
Let us look at each one of the relational operators in Java: | Let us look at each one of the relational operators in Java: | ||
− | Operator 1: ‘Equal to’ operator (==) | + | ==Operator 1: ‘Equal to’ operator (==)== |
This operator is used to check whether the two given operands are equal or not. The operator returns true if the operand at the left-hand side is equal to the right-hand side, else false. | This operator is used to check whether the two given operands are equal or not. The operator returns true if the operand at the left-hand side is equal to the right-hand side, else false. | ||
Line 24: | Line 26: | ||
Syntax: | Syntax: | ||
− | var1 == var2 | + | var1 == var2 |
+ | |||
Illustration: | Illustration: | ||
− | var1 = "GeeksforGeeks" | + | var1 = "GeeksforGeeks" |
− | var2 = 20 | + | var2 = 20 |
− | var1 == var2 results in false | + | var1 == var2 results in false |
+ | |||
Example: | Example: | ||
+ | // Java Program to Illustrate equal to Operator | ||
+ | |||
+ | // Importing I/O classes | ||
+ | import java.io.*; | ||
+ | |||
+ | // Main class | ||
+ | class GFG { | ||
+ | |||
+ | // Main driver method | ||
+ | public static void main(String[] args) | ||
+ | { | ||
+ | // Initializing variables | ||
+ | int var1 = 5, var2 = 10, var3 = 5; | ||
+ | |||
+ | // Displaying var1, var2, var3 | ||
+ | System.out.println("Var1 = " + var1); | ||
+ | System.out.println("Var2 = " + var2); | ||
+ | System.out.println("Var3 = " + var3); | ||
+ | |||
+ | // Comparing var1 and var2 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 == var2: " | ||
+ | + (var1 == var2)); | ||
+ | |||
+ | // Comparing var1 and var3 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 == var3: " | ||
+ | + (var1 == var3)); | ||
+ | } | ||
+ | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Output | Output | ||
− | Var1 = 5 | + | Var1 = 5 |
− | Var2 = 10 | + | Var2 = 10 |
− | Var3 = 5 | + | Var3 = 5 |
− | var1 == var2: false | + | var1 == var2: false |
− | var1 == var3: true | + | var1 == var3: true |
− | Operator 2: ‘Not equal to’ Operator(!=) | + | Operator 2: ‘Not equal to’ Operator(!=) |
This operator is used to check whether the two given operands are equal or not. It functions opposite to that of the equal-to-operator. It returns true if the operand at the left-hand side is not equal to the right-hand side, else false. | This operator is used to check whether the two given operands are equal or not. It functions opposite to that of the equal-to-operator. It returns true if the operand at the left-hand side is not equal to the right-hand side, else false. | ||
Line 75: | Line 79: | ||
Syntax: | Syntax: | ||
− | var1 != var2 | + | var1 != var2 |
+ | |||
Illustration: | Illustration: | ||
− | var1 = "GeeksforGeeks" | + | var1 = "GeeksforGeeks" |
− | var2 = 20 | + | var2 = 20 |
+ | var1 != var2 results in true | ||
− | |||
Example: | Example: | ||
+ | // Java Program to Illustrate No- equal-to Operator | ||
+ | |||
+ | // Importing I/O classes | ||
+ | import java.io.*; | ||
+ | |||
+ | // Main class | ||
+ | class GFG { | ||
+ | |||
+ | // Main driver method | ||
+ | public static void main(String[] args) | ||
+ | { | ||
+ | // Initializing variables | ||
+ | int var1 = 5, var2 = 10, var3 = 5; | ||
+ | |||
+ | // Displaying var1, var2, var3 | ||
+ | System.out.println("Var1 = " + var1); | ||
+ | System.out.println("Var2 = " + var2); | ||
+ | System.out.println("Var3 = " + var3); | ||
+ | |||
+ | // Comparing var1 and var2 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 == var2: " | ||
+ | + (var1 != var2)); | ||
+ | |||
+ | // Comparing var1 and var3 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 == var3: " | ||
+ | + (var1 != var3)); | ||
+ | } | ||
+ | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Output | Output | ||
− | Var1 = 5 | + | Var1 = 5 |
− | Var2 = 10 | + | Var2 = 10 |
− | Var3 = 5 | + | Var3 = 5 |
− | var1 == var2: true | + | var1 == var2: true |
− | var1 == var3: false | + | var1 == var3: false |
− | Operator 3: ‘Greater than’ operator(>) | + | Operator 3: ‘Greater than’ operator(>) |
This checks whether the first operand is greater than the second operand or not. The operator returns true when the operand at the left-hand side is greater than the right-hand side. | This checks whether the first operand is greater than the second operand or not. The operator returns true when the operand at the left-hand side is greater than the right-hand side. | ||
Line 127: | Line 132: | ||
Syntax: | Syntax: | ||
− | var1 > var2 | + | var1 > var2 |
+ | |||
Illustration: | Illustration: | ||
− | var1 = 30 | + | var1 = 30 |
− | var2 = 20 | + | var2 = 20 |
+ | var1 > var2 results in true | ||
− | |||
Example: | Example: | ||
+ | // Java code to Illustrate Greater than operator | ||
+ | |||
+ | // Importing I/O classes | ||
+ | import java.io.*; | ||
+ | |||
+ | // Main class | ||
+ | class GFG { | ||
+ | |||
+ | // Main driver method | ||
+ | public static void main(String[] args) | ||
+ | { | ||
+ | // Initializing variables | ||
+ | int var1 = 30, var2 = 20, var3 = 5; | ||
+ | |||
+ | // Displaying var1, var2, var3 | ||
+ | System.out.println("Var1 = " + var1); | ||
+ | System.out.println("Var2 = " + var2); | ||
+ | System.out.println("Var3 = " + var3); | ||
+ | |||
+ | // Comparing var1 and var2 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 > var2: " + (var1 > var2)); | ||
+ | |||
+ | // Comparing var1 and var3 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var3 > var1: " | ||
+ | + (var3 >= var1)); | ||
+ | } | ||
+ | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Output | Output | ||
− | Var1 = 30 | + | Var1 = 30 |
− | Var2 = 20 | + | Var2 = 20 |
− | Var3 = 5 | + | Var3 = 5 |
− | var1 > var2: true | + | var1 > var2: true |
− | var3 > var1: false | + | var3 > var1: false |
− | Operator 4: ‘Less than’ Operator(<) | + | Operator 4: ‘Less than’ Operator(<) |
This checks whether the first operand is less than the second operand or not. The operator returns true when the operand at the left-hand side is less than the right-hand side. It functions opposite to that of the greater-than operator. | This checks whether the first operand is less than the second operand or not. The operator returns true when the operand at the left-hand side is less than the right-hand side. It functions opposite to that of the greater-than operator. | ||
Line 178: | Line 184: | ||
Syntax: | Syntax: | ||
− | var1 < var2 | + | var1 < var2 |
+ | |||
Illustration: | Illustration: | ||
− | var1 = 10 | + | var1 = 10 |
− | var2 = 20 | + | var2 = 20 |
+ | var1 < var2 results in true | ||
− | |||
Example: | Example: | ||
+ | // Java code to Illustrate Less than Operator | ||
+ | |||
+ | // Importing I/O classes | ||
+ | import java.io.*; | ||
+ | |||
+ | // Main class | ||
+ | class GFG { | ||
+ | |||
+ | // Main driver method | ||
+ | public static void main(String[] args) | ||
+ | { | ||
+ | // Initializing variables | ||
+ | int var1 = 10, var2 = 20, var3 = 5; | ||
+ | |||
+ | // Displaying var1, var2, var3 | ||
+ | System.out.println("Var1 = " + var1); | ||
+ | System.out.println("Var2 = " + var2); | ||
+ | System.out.println("Var3 = " + var3); | ||
+ | |||
+ | // Comparing var1 and var2 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 < var2: " + (var1 < var2)); | ||
+ | |||
+ | // Comparing var2 and var3 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var2 < var3: " + (var2 < var3)); | ||
+ | } | ||
+ | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Output | Output | ||
− | Var1 = 10 | + | Var1 = 10 |
− | Var2 = 20 | + | Var2 = 20 |
− | Var3 = 5 | + | Var3 = 5 |
− | var1 < var2: true | + | var1 < var2: true |
− | var2 < var3: false | + | var2 < var3: false |
− | Operator 5: Greater than or equal to (>=) | + | Operator 5: Greater than or equal to (>=) |
This checks whether the first operand is greater than or equal to the second operand or not. The operator returns true when the operand at the left-hand side is greater than or equal to the right-hand side. | This checks whether the first operand is greater than or equal to the second operand or not. The operator returns true when the operand at the left-hand side is greater than or equal to the right-hand side. | ||
Line 228: | Line 235: | ||
Syntax: | Syntax: | ||
− | var1 >= var2 | + | var1 >= var2 |
+ | |||
Illustration: | Illustration: | ||
− | var1 = 20 | + | var1 = 20 |
− | var2 = 20 | + | var2 = 20 |
− | var3 = 10 | + | var3 = 10 |
+ | |||
+ | var1 >= var2 results in true | ||
+ | var2 >= var3 results in true | ||
− | |||
− | |||
Example: | Example: | ||
+ | // Java Program to Illustrate Greater than or equal to | ||
+ | // Operator | ||
+ | |||
+ | // Importing I/O classes | ||
+ | import java.io.*; | ||
+ | |||
+ | // Main class | ||
+ | class GFG { | ||
+ | |||
+ | // Main driver method | ||
+ | public static void main(String[] args) | ||
+ | { | ||
+ | // Initializing variables | ||
+ | int var1 = 20, var2 = 20, var3 = 10; | ||
+ | |||
+ | // Displaying var1, var2, var3 | ||
+ | System.out.println("Var1 = " + var1); | ||
+ | System.out.println("Var2 = " + var2); | ||
+ | System.out.println("Var3 = " + var3); | ||
+ | |||
+ | // Comparing var1 and var2 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 >= var2: " | ||
+ | + (var1 >= var2)); | ||
+ | |||
+ | // Comparing var2 and var3 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var2 >= var3: " | ||
+ | + (var3 >= var1)); | ||
+ | } | ||
+ | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Output | Output | ||
− | Var1 = 20 | + | Var1 = 20 |
− | Var2 = 20 | + | Var2 = 20 |
− | Var3 = 10 | + | Var3 = 10 |
− | var1 >= var2: true | + | var1 >= var2: true |
− | var2 >= var3: false | + | var2 >= var3: false |
− | Operator 6: Less than or equal to (<=) | + | Operator 6: Less than or equal to (<=) |
This checks whether the first operand is less than or equal to the second operand or not. The operator returns true when the operand at the left-hand side is less than or equal to the right-hand side. | This checks whether the first operand is less than or equal to the second operand or not. The operator returns true when the operand at the left-hand side is less than or equal to the right-hand side. | ||
Line 283: | Line 292: | ||
Syntax: | Syntax: | ||
− | var1 <= var2 | + | var1 <= var2 |
+ | |||
Illustration: | Illustration: | ||
− | var1 = 10 | + | var1 = 10 |
− | var2 = 10 | + | var2 = 10 |
− | var3 = 9 | + | var3 = 9 |
+ | |||
+ | var1 <= var2 results in true | ||
+ | var2 <= var3 results in false | ||
− | |||
− | |||
Example: | Example: | ||
+ | // Java Program to Illustrate Less | ||
+ | // than or equal to operator | ||
+ | |||
+ | // Importing I/O classes | ||
+ | import java.io.*; | ||
+ | |||
+ | // Main class | ||
+ | class GFG { | ||
+ | |||
+ | // Main driver method | ||
+ | public static void main(String[] args) | ||
+ | { | ||
+ | // Initializing variables | ||
+ | int var1 = 10, var2 = 10, var3 = 9; | ||
+ | |||
+ | // Displaying var1, var2, var3 | ||
+ | System.out.println("Var1 = " + var1); | ||
+ | System.out.println("Var2 = " + var2); | ||
+ | System.out.println("Var3 = " + var3); | ||
+ | |||
+ | // Comparing var1 and var2 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var1 <= var2: " | ||
+ | + (var1 <= var2)); | ||
+ | |||
+ | // Comparing var2 and var3 and | ||
+ | // printing corresponding boolean value | ||
+ | System.out.println("var2 <= var3: " | ||
+ | + (var2 <= var3)); | ||
+ | } | ||
+ | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
Output | Output | ||
− | Var1 = 10 | + | Var1 = 10 |
− | Var2 = 10 | + | Var2 = 10 |
− | Var3 = 9 | + | Var3 = 9 |
− | var1 <= var2: true | + | var1 <= var2: true |
− | var2 <= var3: false | + | var2 <= var3: false |
Revision as of 13:23, 6 May 2022
Operators constitute the basic building block to any programming language. Java too provides many types of operators which can be used according to the need to perform various calculations and functions, be it logical, arithmetic, relational, etc. They are classified based on the functionality they provide.
Types of Operators:
- Operator Arithmetic
- Operator Unary
- Operator Assignment
- Operator Relational
- Operator Logical
- Operator Ternary
- Operator Bitwise
- Operator Shift
Java Relational Operators are a bunch of binary operators used to check for relations between two operands, including equality, greater than, less than, etc. They return a boolean result after the comparison and are extensively used in looping statements as well as conditional if-else statements and so on. The general format of representing relational operator is:
Syntax:
variable1 relation_operator variable2
Let us look at each one of the relational operators in Java:
Operator 1: ‘Equal to’ operator (==)
This operator is used to check whether the two given operands are equal or not. The operator returns true if the operand at the left-hand side is equal to the right-hand side, else false.
Syntax:
var1 == var2
Illustration:
var1 = "GeeksforGeeks" var2 = 20 var1 == var2 results in false
Example:
// Java Program to Illustrate equal to Operator // Importing I/O classes import java.io.*; // Main class class GFG { // Main driver method public static void main(String[] args) { // Initializing variables int var1 = 5, var2 = 10, var3 = 5; // Displaying var1, var2, var3 System.out.println("Var1 = " + var1); System.out.println("Var2 = " + var2); System.out.println("Var3 = " + var3); // Comparing var1 and var2 and // printing corresponding boolean value System.out.println("var1 == var2: " + (var1 == var2)); // Comparing var1 and var3 and // printing corresponding boolean value System.out.println("var1 == var3: " + (var1 == var3)); } }
Output
Var1 = 5 Var2 = 10 Var3 = 5 var1 == var2: false var1 == var3: true Operator 2: ‘Not equal to’ Operator(!=)
This operator is used to check whether the two given operands are equal or not. It functions opposite to that of the equal-to-operator. It returns true if the operand at the left-hand side is not equal to the right-hand side, else false.
Syntax:
var1 != var2
Illustration:
var1 = "GeeksforGeeks" var2 = 20 var1 != var2 results in true
Example:
// Java Program to Illustrate No- equal-to Operator // Importing I/O classes import java.io.*; // Main class class GFG { // Main driver method public static void main(String[] args) { // Initializing variables int var1 = 5, var2 = 10, var3 = 5; // Displaying var1, var2, var3 System.out.println("Var1 = " + var1); System.out.println("Var2 = " + var2); System.out.println("Var3 = " + var3); // Comparing var1 and var2 and // printing corresponding boolean value System.out.println("var1 == var2: " + (var1 != var2)); // Comparing var1 and var3 and // printing corresponding boolean value System.out.println("var1 == var3: " + (var1 != var3)); } }
Output
Var1 = 5 Var2 = 10 Var3 = 5 var1 == var2: true var1 == var3: false Operator 3: ‘Greater than’ operator(>)
This checks whether the first operand is greater than the second operand or not. The operator returns true when the operand at the left-hand side is greater than the right-hand side.
Syntax:
var1 > var2
Illustration:
var1 = 30 var2 = 20 var1 > var2 results in true
Example:
// Java code to Illustrate Greater than operator // Importing I/O classes import java.io.*; // Main class class GFG { // Main driver method public static void main(String[] args) { // Initializing variables int var1 = 30, var2 = 20, var3 = 5; // Displaying var1, var2, var3 System.out.println("Var1 = " + var1); System.out.println("Var2 = " + var2); System.out.println("Var3 = " + var3); // Comparing var1 and var2 and // printing corresponding boolean value System.out.println("var1 > var2: " + (var1 > var2)); // Comparing var1 and var3 and // printing corresponding boolean value System.out.println("var3 > var1: " + (var3 >= var1)); } }
Output
Var1 = 30 Var2 = 20 Var3 = 5 var1 > var2: true var3 > var1: false Operator 4: ‘Less than’ Operator(<)
This checks whether the first operand is less than the second operand or not. The operator returns true when the operand at the left-hand side is less than the right-hand side. It functions opposite to that of the greater-than operator.
Syntax:
var1 < var2
Illustration:
var1 = 10 var2 = 20 var1 < var2 results in true
Example:
// Java code to Illustrate Less than Operator // Importing I/O classes import java.io.*; // Main class class GFG { // Main driver method public static void main(String[] args) { // Initializing variables int var1 = 10, var2 = 20, var3 = 5; // Displaying var1, var2, var3 System.out.println("Var1 = " + var1); System.out.println("Var2 = " + var2); System.out.println("Var3 = " + var3); // Comparing var1 and var2 and // printing corresponding boolean value System.out.println("var1 < var2: " + (var1 < var2)); // Comparing var2 and var3 and // printing corresponding boolean value System.out.println("var2 < var3: " + (var2 < var3)); } }
Output
Var1 = 10 Var2 = 20 Var3 = 5 var1 < var2: true var2 < var3: false Operator 5: Greater than or equal to (>=)
This checks whether the first operand is greater than or equal to the second operand or not. The operator returns true when the operand at the left-hand side is greater than or equal to the right-hand side.
Syntax:
var1 >= var2
Illustration:
var1 = 20 var2 = 20 var3 = 10 var1 >= var2 results in true var2 >= var3 results in true
Example:
// Java Program to Illustrate Greater than or equal to // Operator // Importing I/O classes import java.io.*; // Main class class GFG { // Main driver method public static void main(String[] args) { // Initializing variables int var1 = 20, var2 = 20, var3 = 10; // Displaying var1, var2, var3 System.out.println("Var1 = " + var1); System.out.println("Var2 = " + var2); System.out.println("Var3 = " + var3); // Comparing var1 and var2 and // printing corresponding boolean value System.out.println("var1 >= var2: " + (var1 >= var2)); // Comparing var2 and var3 and // printing corresponding boolean value System.out.println("var2 >= var3: " + (var3 >= var1)); } }
Output
Var1 = 20 Var2 = 20 Var3 = 10 var1 >= var2: true var2 >= var3: false Operator 6: Less than or equal to (<=)
This checks whether the first operand is less than or equal to the second operand or not. The operator returns true when the operand at the left-hand side is less than or equal to the right-hand side.
Syntax:
var1 <= var2
Illustration:
var1 = 10 var2 = 10 var3 = 9 var1 <= var2 results in true var2 <= var3 results in false
Example:
// Java Program to Illustrate Less // than or equal to operator // Importing I/O classes import java.io.*; // Main class class GFG { // Main driver method public static void main(String[] args) { // Initializing variables int var1 = 10, var2 = 10, var3 = 9; // Displaying var1, var2, var3 System.out.println("Var1 = " + var1); System.out.println("Var2 = " + var2); System.out.println("Var3 = " + var3); // Comparing var1 and var2 and // printing corresponding boolean value System.out.println("var1 <= var2: " + (var1 <= var2)); // Comparing var2 and var3 and // printing corresponding boolean value System.out.println("var2 <= var3: " + (var2 <= var3)); } }
Output
Var1 = 10 Var2 = 10 Var3 = 9 var1 <= var2: true var2 <= var3: false