logo

Java Math.max()-metoden

    Java.lang.math.max()er en innebygd metode i Java som brukes til å returnere Maksimal eller Største verdi fra de gitte to argumentene. Argumentene er tatt i int, float, double og long.

Syntaks:

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

Parametere:

 a: first value b: second value 

Komme tilbake:

 This method returns maximum of two numbers. 
  • Hvis vi gir positiv og negativ verdi som argument, vil denne metoden returnere positivt argument.
  • Hvis vi gir begge negative verdier som argument, returneres tall med den laveste størrelsen som resultat.
  • Hvis argumentene ikke er et tall(NaN), vil denne metoden returnere NaN.

Eksempel 1:

 public class MaxExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the maximum of two numbers System.out.println(Math.max(x, y)); } } 
Test det nå

Produksjon:

 50 

Eksempel 2:

 public class MaxExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the maximum of two numbers System.out.println(Math.max(x, y)); } } 
Test det nå

Produksjon:

 25.67 

Eksempel 3:

 public class MaxExample3 { public static void main(String args[]) { float x = -25.74f; float y = -20.38f; //print the maximum of two numbers System.out.println(Math.max(x, y)); } } 
Test det nå

Produksjon:

metodeoverstyring i java
 -20.38