logo

Java Integer min() Metod

De min() är en metod av heltalsklass under java.lang-paket . Denna metod returnerar numeriskt minimivärdet bland de två metoderna argument specificerad av en användare. Denna metod kan överbelastas och den tar argumenten i int, double , float och long.

Obs: Om ett positivt och ett negativt tal skickas som ett argument, genererade det det negativa resultatet. Och om båda parametrarna passerade som ett negativt tal, genererar det ett resultat med större magnitud.

Syntax:

Följande är förklaringen av min() metod:

java sträng till array
 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) 

Parameter:

Data typ Parameter Beskrivning Obligatoriskt/valfritt
int a Numeriskt värde angett av en användare. Nödvändig
int b Numeriskt värde angett av en användare. Nödvändig

Returnerar:

De min() metod returnerar det mindre värdet bland argumenten med två metoder som specificerats av en användare.

Undantag:

DEN DÄR

Kompatibilitetsversion:

Java 1.5 och högre

Exempel 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)); } } 
Testa det nu

Produktion:

 Math.min(5485,3242)=3242 

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

Produktion:

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

Exempel 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)); } } 
Testa det nu

Produktion:

 Result: -70 

Exempel 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)); } 
Testa det nu

Produktion:

 Result: -20