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)
Parametre:
a: first value b: second value
Vend tilbage:
This method returns maximum of two numbers.
- Hvis vi giver positiv og negativ værdi som argument, vil denne metode returnere positivt argument.
- Hvis vi angiver begge negative værdier som argument, returneres tal med den lavere størrelse som resultat.
- Hvis argumenterne ikke er et tal(NaN), vil denne metode 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 nu
Produktion:
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 nu
Produktion:
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 nu
Produktion:
metode tilsidesættelse i java
-20.38