logo

Metoda Java Integer max().

The max() je metoda třídy Integer pod Jáva balíček .lang. Tato metoda číselně vrací maximální hodnotu mezi dvěma argumenty metody zadanými uživatelem. Tato metoda může být přetížená a vyžaduje argumenty int, double, float a long. Tato metoda je specifikována Matematika Třída.

Poznámka: Pokud je jako argument předáno kladné a záporné číslo, vygeneruje se kladný výsledek. A pokud oba parametry předají záporné číslo, generuje výsledek s nižší velikostí.

Syntax:

Následuje prohlášení o max() 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:

Datový typ Parametr Popis Povinné/Volitelné
int A Číselná hodnota zadaná uživatelem. Požadované
int b Číselná hodnota zadaná uživatelem. Požadované

Vrácení:

The max() metoda vrací větší hodnotu mezi dvěma argumenty metody zadanými uživatelem.

Výjimky:

ŽE

Verze kompatibility:

Java 1.5 a vyšší

Příklad 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)); } } 
Otestujte to hned

Výstup:

 Math.max(5485,3242)=5485 

Příklad 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)); } } 

Výstup:

 Enter the Two Numeric value: 45 77 Larger value of Math.max(45,77) = 77 

Příklad 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)); } } 
Otestujte to hned

Výstup:

 Result: -23 

Příklad 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)); } } 
Otestujte to hned

Výstup:

 Result: 23