logo

Java Integer min() metode

The min() ir Integer klases metode java.lang pakotne . Šī metode skaitliski atgriež minimālo vērtību starp abām metodēm arguments norādījis lietotājs. Šo metodi var pārslogot, un tai ir nepieciešami argumenti int, double , float un long.

Piezīme. Ja pozitīvs un negatīvs skaitlis tiek nodots kā arguments, tas ģenerēja negatīvu rezultātu. Un, ja abi parametri ir nodoti kā negatīvs skaitlis, tas ģenerē rezultātu ar lielāku vērtību.

Sintakse:

Tālāk ir sniegta deklarācija min() metode:

kā lasīt no csv faila 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) 

Parametrs:

Datu tips Parametrs Apraksts Obligāti/neobligāti
starpt a Lietotāja ievadītā skaitliskā vērtība. Obligāti
starpt b Lietotāja ievadītā skaitliskā vērtība. Obligāti

Atgriež:

The min() metode atgriež mazāko vērtību starp diviem lietotāja norādītajiem metodes argumentiem.

Izņēmumi:

TAS

Saderības versija:

Java 1.5 un jaunāka versija

1. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 Math.min(5485,3242)=3242 

2. piemērs

 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)); } } 

Izvade:

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

3. piemērs

 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)); } } 
Izmēģiniet to tūlīt

Izvade:

 Result: -70 

4. piemērs

 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)); } 
Izmēģiniet to tūlīt

Izvade:

 Result: -20