- Java.lang.math.min() は、指定された 2 つの引数から最小値または最小値を返すために使用される Java の組み込みメソッドです。引数は int、float、double、long で受け取ります。
構文:
public static int min(int a, int b) public static double min(double a, double b) public static long min(long a, long b) public static float min(float a, float b)
パラメーター:
a: first value b: second value
戻る:
This method returns minimum of two numbers.
- 引数として正と負の値を指定すると、このメソッドは負の引数を返します。
- 両方の負の値を引数として指定すると、大きい方の数値が結果として返されます。
- 引数が数値 (NaN) でない場合、このメソッドは NaN を返します。
例 1:
public class MinExample1 { public static void main(String args[]) { int x = 20; int y = 50; //print the minimum of two numbers System.out.println(Math.min(x, y)); } }今すぐテストしてください
出力:
20
例 2:
public class MinExample2 { public static void main(String args[]) { double x = 25.67; double y = -38.67; //print the minimum of two numbers System.out.println(Math.min(x, y)); } }今すぐテストしてください
出力:
-38.67
例 3:
public class MinExample3 { public static void main(String args[]) { float x = -55.73f; float y = -30.95f; //print the minimum of two numbers System.out.println(Math.min(x, y)); } }今すぐテストしてください
出力:
-55.73