A összehasonlítani() A metódus az alatti Integer osztály egyik metódusa java.lang csomag . Ez a módszer két egész számot hasonlít össze tárgyakat számszerűen. A 0 érték eredményét adja vissza, ha az Integer egyenlő az Integer argumentummal, 0-nál kisebb értéket, ha az Integer kisebb, mint az érv Egész szám és 0-nál nagyobb érték, ha az Integer nagyobb, mint az Integer argumentum. Ezt a módszert a Hasonló Felület .
Megjegyzés: Ez a módszer nem hasonlítható össze két különböző típusú argumentációval, ezért az argumentumnak és a számnak is azonos típusúnak kell lennie.
Szintaxis
Az alábbiakban a nyilatkozat összehasonlítani () módszer:
public int compareTo(Integer anotherInteger)
Paraméter:
Adattípus | Paraméter | Leírás | Kötelező/Opcionális |
---|---|---|---|
int | másikInteger | Az összehasonlítandó egész érték | Kívánt |
Visszaküldés:
Ez a metódus a következő értékeket adja vissza:
0 = The value 0 if this Integer = the argument Integer, -1 = The value less than 0 if thisInteger the argument Integer
Kivételek:
HOGY
Kompatibilitási verzió:
Java 1.2 és újabb
1. példa
public class IntegerCompareToExample1 { public static void main(String[] args) { Integer num1 = new Integer(10); Integer num2 = new Integer(20); Integer num3 = new Integer(10); Integer num4 = new Integer(30); // as num1<num2, output will be a value less than zero system.out.println(num1.compareto(num2)); as num1="num3," system.out.println(num1.compareto(num3)); num4> num2, Output will be a value greater than zero System.out.println(num4.compareTo(num2)); } } </num2,>Tesztelje most
Kimenet:
-1 0 1
2. példa
public class IntegerCompareToExample2 { public static void main(String[] args) { // compares two Integer values numerically Integer x = new Integer('90'); Integer y= new Integer('58'); int retResult = x.compareTo(y); if(retResult > 0) { System.out.println('x is greater than y'); } else if(retResult<0) { system.out.println('x is less than y'); } else equal to < pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> x is greater than y </pre> <h2>Example 3</h2> <pre> public class IntegerCompareToExample3 { public static void main(String[] args) { Integer value = new Integer(222); // check if the value is less than 222 System.out.println(value.compareTo(155)); // check if value is equal to 222 System.out.println(value.compareTo(222)); // check if value is greater than 222 System.out.println(value.compareTo(305)); } } </pre> <span> Test it Now </span> <p> <strong>Output:</strong> </p> <pre> 1 0 -1 </pre> <h2>Example 4</h2> <pre> import java.util.Scanner; public class IntegerCompareToExample4 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print('Enter the integer value to be campare with another Integer: '); Integer value = sc.nextInt(); sc.close(); System.out.println(value.compareTo(305)); System.out.println(value.compareTo(200)); System.out.println(value.compareTo(155)); } } </pre> <p> <strong>Output:</strong> </p> <pre> Enter the integer value to be campare with another Integer: 200 -1 0 1 </pre> <br></0)>
3. példa
public class IntegerCompareToExample3 { public static void main(String[] args) { Integer value = new Integer(222); // check if the value is less than 222 System.out.println(value.compareTo(155)); // check if value is equal to 222 System.out.println(value.compareTo(222)); // check if value is greater than 222 System.out.println(value.compareTo(305)); } }Tesztelje most
Kimenet:
1 0 -1
4. példa
import java.util.Scanner; public class IntegerCompareToExample4 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print('Enter the integer value to be campare with another Integer: '); Integer value = sc.nextInt(); sc.close(); System.out.println(value.compareTo(305)); System.out.println(value.compareTo(200)); System.out.println(value.compareTo(155)); } }
Kimenet:
Enter the integer value to be campare with another Integer: 200 -1 0 1
0)>