Heim >Java >javaLernprogramm >Vergleichsoperatoren in Java
Operatoren gelten als Sonderzeichen oder Symbole, die zum Ausführen bestimmter Operationen an Variablen oder Werten (Operanden) verwendet werden. In Java gibt es mehrere Operatoren, die zur Manipulation von Variablen verwendet werden. Es umfasst arithmetische Operatoren, bitweise Operatoren, Vergleichsoperatoren, logische Operatoren und Sonstiges. Operatoren, Zuweisungsoperatoren usw. In diesem Artikel werden wir weitere Details zu Vergleichsoperatoren in Java besprechen.
Im Folgenden sind die verschiedenen Vergleichsoperatoren in Java aufgeführt.
WERBUNG Beliebter Kurs in dieser Kategorie JAVA MASTERY - Spezialisierung | 78 Kursreihe | 15 ProbetestsName of the Operator | Operator | Example |
Equal to | = = | a= =b |
Not equal to | != | a!=b |
Less than | < | a |
Greater than | > | a>b |
Less than or equal to | <= | a<=b |
Greater than or equal to | >= | a>=b |
Dieser Operator prüft, ob der Wert auf der linken Seite des Operators gleich dem Wert auf der rechten Seite ist.
Beispiel:
import java.util.Scanner; public class ComparisonExample { public static void main(String[] args) { int x, y; Scanner sc= new Scanner(System.in); //take the value of x as input from user and store it in variable x System.out.print("Enter the value of x : "); x = sc.nextInt(); //take the value of y as input from user System.out.print("Enter the value of y : "); //store the value in variable y y = sc.nextInt(); //checks whether x and y are equal; Return true if it is same, else returns false System.out.println(x == y); } }
Ausgabe:
Fall 1: x = 3; y =5; Gibt false zurück, da sie nicht gleich sind
Fall 2: x = 4; y =4; Gibt „true“ zurück, da sie gleich sind
Dieser Operator prüft, ob der Wert auf der linken Seite des Operators nicht mit dem Wert auf der rechten Seite übereinstimmt.
Beispiel:
import java.util.Scanner; public class ComparisonExample { public static void main(String[] args) { int x, y; Scanner sc= new Scanner(System.in); //take the value of x as input from user and store it in variable x System.out.print("Enter the value of x : "); x = sc.nextInt(); //take the value of y as input from user System.out.print("Enter the value of y : "); //store the value in variable y y = sc.nextInt(); //checks whether x and y are not equal; Return true if it is not equal, else returns false System.out.println(x != y); } }
Ausgabe:
Fall 1: x = 3; y =4; Gibt „true“ zurück, da sie nicht gleich sind
Fall 2: x = 3; y =3; Gibt false zurück, da sie gleich sind
Dieser Operator prüft, ob der Wert auf der linken Seite des Operators kleiner ist als der Wert auf der rechten Seite.
Beispiel:
import java.util.Scanner; public class ComparisonExample { public static void main(String[] args) { int x, y; Scanner sc= new Scanner(System.in); //take the value of x as input from user System.out.print("Enter the value of x : "); //store the value in variable x x = sc.nextInt(); //take the value of y as input from user System.out.print("Enter the value of y : "); //store the value in variable y y = sc.nextInt(); //Returns true if x is less than y, else false System.out.println(x < y); } }
Ausgabe:
Fall 1: x = 4; y =6; Gibt „true“ zurück, da x kleiner als y ist
Fall 2: x = 44; y =32; Gibt „falsch“ zurück, da x nicht kleiner als y ist
Dieser Operator prüft, ob der Wert auf der linken Seite des Operators größer ist als der Wert auf der rechten Seite.
Beispiel:
import java.util.Scanner; public class ComparisonExample { public static void main(String[] args) { int x, y; Scanner sc= new Scanner(System.<em>in</em>); //take the value of x as input from user System.out.print("Enter the value of x : "); //store the value in variable x x = sc.nextInt(); //take the value of y as input from user System.out.print("Enter the value of y : "); //store the value in variable y y = sc.nextInt(); //Returns true if x is greater than y, else false System.out.println(x > y); } }
Ausgabe:
Fall 1: x = 67; y =66; Gibt „true“ zurück, da x größer als y ist
Fall 2: x = 43; y =57; Gibt „falsch“ zurück, da x kleiner als y ist
Dieser Operator prüft, ob der Wert auf der linken Seite des Operators kleiner oder gleich dem Wert auf der rechten Seite ist.
Beispiel:
import java.util.Scanner; public class ComparisonExample { public static void main(String[] args) { int x, y; Scanner sc= new Scanner(System.in); //take the value of x as input from user and store it in variable x System.out.print("Enter the value of x : "); x = sc.nextInt(); //take the value of y as input from user and store it in variable y System.out.print("Enter the value of y : "); y = sc.nextInt(); //Returns true x is less than or equal to y, else false System.out.println(x <= y); } }
Ausgabe:
Fall 1: x = 45; y =45; Gibt „true“ zurück, da x gleich y
istFall 2: x = 45; y =54; Gibt „true“ zurück, da x kleiner als y ist
Fall 3: x = 45; y =43; Gibt „false“ zurück, da x größer als y ist
Dieser Operator prüft, ob der Wert auf der linken Seite des Operators größer oder gleich dem Wert auf der rechten Seite ist.
Beispiel:
import java.util.Scanner; public class ComparisonExample { public static void main(String[] args) { int x, y; Scanner sc= new Scanner(System.in); //take the value of x as input from user System.out.print("Enter the value of x : "); //store the value in variable x x = sc.nextInt(); //take the value of y as input from user System.out.print("Enter the value of y : "); //store the value in variable y y = sc.nextInt(); //Returns true x is greater than or equal to y, else false System.out.println(x >= y); } }
Ausgabe:
Fall 1: x = 54; y =67; Gibt „falsch“ zurück, da x kleiner als y ist
Fall 2: x = 45; y =36; Gibt „true“ zurück, da x größer als y ist
Fall 3: x = 55; y =55; Gibt „true“ zurück, da x gleich y
istDas obige ist der detaillierte Inhalt vonVergleichsoperatoren in Java. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!