logo

Java Long compare() Method

שיטת compare() של המחלקה Java Long משמשת להשוואה מספרית של שני אובייקטים ארוכים.

תחביר:

 public static int compare(long x, long y) 

פָּרָמֶטֶר:

השיטה לעיל מורכבת משני פרמטרים:

  1. הערך הארוך הראשון שצריך להשוות.
  2. הערך השני ארוך שצריך להשוות.

לַחֲזוֹר:

השיטה לעיל מחזירה:

  1. 0 אם x==y.
  2. ערך קטן מ-0 אם x
  3. ערך גדול מ-0 אם x>y.

דוגמה 1

 public class JavaLongcompareExample1 { public static void main(String[] args) { Long s1 = 76l; Long s2 = 42l; int obj = Long.compare(s1, s2); if(obj==0) { System.out.println('Both the long values are same.'); } else if(obj>0) { System.out.println('The value ''+s1+'' is greater than '+s2); } else { System.out.println('The value ''+s1+'' is smaller than '+s2); } } } 
בדוק את זה עכשיו

תְפוּקָה:

 The value '76' is greater than 42 

דוגמה 2

 import java.util.Scanner; public class JavaLongcompareExample2 { public static void main(String[] args) { Long age = 18l; Scanner scanner = new Scanner(System.in); System.out.print(&apos;Enter your valid age: &apos;); Long userAge = scanner.nextLong(); int com = Long.compare(age,userAge); if(com<=0) { system.out.println('you are eligible to vote.'); } else not eligible.'); < pre> <p> <strong>Output:</strong> </p> <pre> Enter your valid age: 35 You are eligible to vote. </pre> <h2>Example 3</h2> <pre> import java.util.Scanner; public class JavaLongcompareExample3 { public static void main(String[] args) { Long doy = 2018l; Scanner scanner = new Scanner(System.in); System.out.print(&apos;Enter your birth year : &apos;); Long userAge = scanner.nextLong(); int com = Long.compare(doy,userAge); if(com<=0) { system.out.println('please enter a valid birth year.'); } else long age="doy-userAge;" system.out.println('you are '+age+' years old.'); < pre> <p> <strong>Output:</strong> </p> <pre> Enter your birth year : 2020 PLEASE enter a valid birth year. </pre></=0)></pre></=0)>

דוגמה 3

 import java.util.Scanner; public class JavaLongcompareExample3 { public static void main(String[] args) { Long doy = 2018l; Scanner scanner = new Scanner(System.in); System.out.print(&apos;Enter your birth year : &apos;); Long userAge = scanner.nextLong(); int com = Long.compare(doy,userAge); if(com<=0) { system.out.println(\'please enter a valid birth year.\'); } else long age="doy-userAge;" system.out.println(\'you are \'+age+\' years old.\'); < pre> <p> <strong>Output:</strong> </p> <pre> Enter your birth year : 2020 PLEASE enter a valid birth year. </pre></=0)>