logo

Java Integer max() метод

The макс () е метод на клас Integer под Java .lang пакет. Този метод връща числено максималната стойност между двата аргумента на метода, посочени от потребителя. Този метод може да бъде претоварен и приема аргументите в int, double, float и long. Този метод е определен от математика Клас.

Забележка: Ако положително и отрицателно число се предаде като аргумент, това генерира положителен резултат. И ако и двата параметъра са предадени като отрицателно число, той генерира резултат с по-ниската величина.

Синтаксис:

Следва декларацията на макс () метод:

 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) 

Параметър:

DataType Параметър Описание Задължително/по избор
вътр а Числова стойност, въведена от потребител. Задължително
вътр b Числова стойност, въведена от потребител. Задължително

Се завръща:

The макс () метод връща по-голямата стойност между двата аргумента на метода, посочени от потребителя.

Изключения:

ЧЕ

Версия за съвместимост:

Java 1.5 и по-нова версия

Пример 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)); } } 
Тествайте сега

Изход:

 Math.max(5485,3242)=5485 

Пример 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)); } } 

Изход:

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

Пример 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)); } } 
Тествайте сега

Изход:

 Result: -23 

Пример 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)); } } 
Тествайте сега

Изход:

 Result: 23