logo

Java Integer min() שיטה

ה min() היא שיטה של ​​מחלקה Integer under חבילת java.lang . שיטה זו מחזירה באופן מספרי את הערך המינימלי בין שתי השיטה טַעֲנָה שצוין על ידי משתמש. ניתן להעמיס על שיטה זו והיא לוקחת את הארגומנטים ב-int, double, float ו-long.

הערה: אם מספר חיובי ושלילי מועבר כארגומנט, הוא יצר את התוצאה השלילית. ואם שני הפרמטרים עברו כמספר שלילי, זה יוצר תוצאה בגודל גדול יותר.

תחביר:

להלן ההצהרה של min() שיטה:

שירותי אינטרנט java
 public static int min(int a, int b) public static long min(long a, long b) public static float min(float a, float b) public static double min(double a, double b) 

פָּרָמֶטֶר:

סוג מידע פָּרָמֶטֶר תיאור חובה/אופציונלי
int א ערך מספרי שהוזן על ידי משתמש. נדרש
int ב ערך מספרי שהוזן על ידי משתמש. נדרש

החזרות:

ה min() שיטה מחזירה את הערך הקטן יותר מבין ארגומנט שתי השיטות שצוין על ידי משתמש.

חריגים:

זֶה

גרסת תאימות:

Java 1.5 ומעלה

דוגמה 1

 public class IntegerMinExample1 { public static void main(String[] args) { // Get two integer numbers int a = 5485; int b = 3242; // print the smaller number between x and y System.out.println('Math.min(' + a + ',' + b + ')=' + Math.min(a, b)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 Math.min(5485,3242)=3242 

דוגמה 2

 import java.util.Scanner; public class IntegerMinExample2 { public static void main(String[] args) { //Get two integer numbers from console System.out.println('Enter the Two Numeric value: '); Scanner readInput= new Scanner(System.in); int a = readInput.nextInt(); int b = readInput.nextInt(); readInput.close(); //Print the smaller number between a and b System.out.println('Smaller value of Math.min(' + a + ',' + b + ') = ' + Math.min(a, b)); } } 

תְפוּקָה:

 Enter the Two Numeric value: 45 76 Smaller value of Math.min(45,76) = 45 

דוגמה 3

 public class IntegerMinExample3 { public static void main(String[] args) { //Get two integer numbers int a = -70; int b = -25; // prints result with greater magnitude System.out.println('Result: '+Math.min(a, b)); } } 
בדוק את זה עכשיו

תְפוּקָה:

 Result: -70 

דוגמה 4

 public class IntegerMinExample4 { public static void main(String[] args) { //Get two integer numbers int a = -20; int b = 25; // prints result with negative value System.out.println('Result: '+Math.min(a, b)); } 
בדוק את זה עכשיו

תְפוּקָה:

 Result: -20