Pengendali dianggap sebagai aksara atau simbol khas yang digunakan untuk melaksanakan operasi tertentu pada pembolehubah atau nilai (operand). Di Java, terdapat beberapa operator yang digunakan untuk memanipulasi pembolehubah. Ia termasuk operator Aritmetik, Operator Bitwise, Operator Perbandingan, Operator logik, Lain-lain. operator, operator Tugasan, dsb. Dalam artikel ini, kami akan membincangkan lebih banyak butiran tentang operator perbandingan dalam java.
Berikut ialah pelbagai pengendali perbandingan di Jawa.
IKLAN Kursus Popular dalam kategori ini JAVA MASTERY - Pengkhususan | 78 Siri Kursus | 15 Ujian Olok-olokName 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 |
Pengendali ini menyemak sama ada nilai di sebelah kiri pengendali adalah sama dengan nilai di sebelah kanan.
Contoh:
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); } }
Output:
Kes 1: x = 3; y =5; Mengembalikan palsu kerana ia tidak sama
Kes 2: x = 4; y =4; Mengembalikan benar kerana ia adalah sama
Pengendali ini menyemak sama ada nilai di sebelah kiri pengendali tidak sama dengan nilai di sebelah kanan.
Contoh:
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); } }
Output:
Kes 1: x = 3; y =4; Mengembalikan benar kerana mereka tidak sama
Kes 2: x = 3; y =3; Mengembalikan palsu kerana ia adalah sama
Pengendali ini menyemak sama ada nilai di sebelah kiri pengendali adalah kurang daripada nilai di sebelah kanan.
Contoh:
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); } }
Output:
Kes 1: x = 4; y =6; Mengembalikan benar kerana x kurang daripada y
Kes 2: x = 44; y =32; Mengembalikan palsu kerana x tidak kurang daripada y
Pengendali ini menyemak sama ada nilai di sebelah kiri pengendali lebih besar daripada nilai di sebelah kanan.
Contoh:
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); } }
Output:
Kes 1: x = 67; y =66; Mengembalikan benar kerana x lebih besar daripada y
Kes 2: x = 43; y =57; Mengembalikan palsu kerana x kurang daripada y
Pengendali ini menyemak sama ada nilai di sebelah kiri pengendali adalah kurang daripada atau sama dengan nilai di sebelah kanan.
Contoh:
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); } }
Output:
Kes 1: x = 45; y =45; Mengembalikan benar kerana x sama dengan y
Kes 2: x = 45; y =54; Mengembalikan benar kerana x kurang daripada y
Kes 3: x = 45; y =43; Mengembalikan palsu kerana x lebih besar daripada y
Pengendali ini menyemak sama ada nilai di sebelah kiri pengendali lebih besar daripada atau sama dengan nilai di sebelah kanan.
Contoh:
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); } }
Output:
Kes 1: x = 54; y =67; Mengembalikan palsu kerana x kurang daripada y
Kes 2: x = 45; y =36; Mengembalikan benar kerana x lebih besar daripada y
Kes 3: x = 55; y =55; Mengembalikan benar kerana x sama dengan y
Atas ialah kandungan terperinci Operator Perbandingan di Jawa. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!