The maks.() jest metodą klasy Integer w ramach Jawa pakiet .lang. Ta metoda liczbowo zwraca maksymalną wartość pomiędzy dwoma argumentami metody określonymi przez użytkownika. Ta metoda może być przeciążona i przyjmuje argumenty int, double, float i long. Metoda ta jest określona przez Matematyka Klasa.
Uwaga: Jeśli jako argument zostanie przekazana liczba dodatnia i ujemna, wygenerowany zostanie wynik dodatni. A jeżeli oba parametry zostaną przekazane jako liczba ujemna, to wygenerowany zostanie wynik o mniejszej wartości.
Składnia:
Poniżej znajduje się oświadczenie maks.() metoda:
public static int max(int a, int b) public static long max(long a, long b) public static float max(float a, float b) public static double max(double a, double b)
Parametr:
Typ danych | Parametr | Opis | Wymagane/opcjonalne |
---|---|---|---|
wew | A | Wartość liczbowa wprowadzona przez użytkownika. | Wymagany |
wew | B | Wartość liczbowa wprowadzona przez użytkownika. | Wymagany |
Zwroty:
The maks.() Metoda zwraca większą wartość pomiędzy dwoma argumentami metody określonymi przez użytkownika.
Wyjątki:
TO
Wersja kompatybilności:
Java 1.5 i nowsze
Przykład 1
public class IntegerMaxExample1 { public static void main(String[] args) { // get two integer numbers int x = 5485; int y = 3242; // print the larger number between x and y System.out.println('Math.max(' + x + ',' + y + ')=' + Math.max(x, y)); } }Przetestuj teraz
Wyjście:
Math.max(5485,3242)=5485
Przykład 2
import java.util.Scanner; public class IntegerMaxExample2 { 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 larger number between a and b System.out.println('Larger value of Math.max(' + a + ',' + b + ') = ' + Math.max(a, b)); } }
Wyjście:
Enter the Two Numeric value: 45 77 Larger value of Math.max(45,77) = 77
Przykład 3
public class IntegerMaxExample3 { public static void main(String[] args) { //Get two integer numbers int a = -25; int b = -23; // Prints result with lower magnitude System.out.println('Result: '+Math.max(a, b)); } }Przetestuj teraz
Wyjście:
Result: -23
Przykład 4
public class IntegerMaxExample4 { public static void main(String[] args) { //Get two integer numbers int a = -75; int b = 23; // Prints result with positive value System.out.println('Result: '+Math.max(a, b)); } }Przetestuj teraz
Wyjście:
Result: 23