の 分() は Integer クラスのメソッドです java.langパッケージ 。このメソッドは、2 つのメソッドのうちの最小値を数値的に返します。 口論 ユーザーによって指定されます。このメソッドはオーバーロードでき、int、double、float、long の引数を受け取ります。
注: 正の数値と負の数値が引数として渡されると、負の結果が生成されます。両方のパラメーターが負の数として渡された場合、より大きい値の結果が生成されます。
構文:
以下は宣言です 分() 方法:
Java文字列をintに変換する方法
public static int min(int a, int b) public static long min(long a, long b) public static float min(float a, float b) public static double min(double a, double b)
パラメータ:
データ・タイプ | パラメータ | 説明 | 必須/オプション |
---|---|---|---|
整数 | ある | ユーザーが入力した数値。 | 必須 |
整数 | b | ユーザーが入力した数値。 | 必須 |
戻り値:
の 分() メソッドは、ユーザーが指定した 2 つのメソッド引数のうち小さい方の値を返します。
例外:
それ
互換性のあるバージョン:
Java 1.5以降
例1
public class IntegerMinExample1 { public static void main(String[] args) { // Get two integer numbers int a = 5485; int b = 3242; // print the smaller number between x and y System.out.println('Math.min(' + a + ',' + b + ')=' + Math.min(a, b)); } }今すぐテストしてください
出力:
Math.min(5485,3242)=3242
例 2
import java.util.Scanner; public class IntegerMinExample2 { 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 smaller number between a and b System.out.println('Smaller value of Math.min(' + a + ',' + b + ') = ' + Math.min(a, b)); } }
出力:
Enter the Two Numeric value: 45 76 Smaller value of Math.min(45,76) = 45
例 3
public class IntegerMinExample3 { public static void main(String[] args) { //Get two integer numbers int a = -70; int b = -25; // prints result with greater magnitude System.out.println('Result: '+Math.min(a, b)); } }今すぐテストしてください
出力:
Result: -70
例 4
public class IntegerMinExample4 { public static void main(String[] args) { //Get two integer numbers int a = -20; int b = 25; // prints result with negative value System.out.println('Result: '+Math.min(a, b)); }今すぐテストしてください
出力:
Result: -20