logo

Java Math.min()-Methode

  • Java.lang.math.min() ist eine in Java integrierte Methode, die verwendet wird, um den minimalen oder niedrigsten Wert der beiden angegebenen Argumente zurückzugeben. Die Argumente werden in int, float, double und long angenommen.

Syntax:

 public static int min(int a, int b) public static double min(double a, double b) public static long min(long a, long b) public static float min(float a, float b) 

Parameter:

 a: first value b: second value 

Zurückkehren:

 This method returns minimum of two numbers. 
  • Wenn wir positive und negative Werte als Argument angeben, gibt diese Methode ein negatives Argument zurück.
  • Wenn wir beide negativen Werte als Argument angeben, wird als Ergebnis die Zahl mit der höheren Größe zurückgegeben.
  • Wenn die Argumente keine Zahl (NaN) sind, gibt diese Methode NaN zurück.

Beispiel 1:

 public class MinExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the minimum of two numbers System.out.println(Math.min(x, y)); } } 
Testen Sie es jetzt

Ausgabe:

 20 

Beispiel 2:

 public class MinExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the minimum of two numbers System.out.println(Math.min(x, y)); } } 
Testen Sie es jetzt

Ausgabe:

xd xd Bedeutung
 -38.67 

Beispiel 3:

 public class MinExample3 { public static void main(String args[]) { float x = -55.73f; float y = -30.95f; //print the minimum of two numbers System.out.println(Math.min(x, y)); } } 
Testen Sie es jetzt

Ausgabe:

 -55.73