Guava 的Ints.min()返回數組中存在的最小值。
用法:
public static int min(int... array)
參數:此方法將數組作為參數,它是int值的非空數組。
返回值:此方法返回數組中存在的小於或等於數組中每個其他值的值。
異常:如果array為空,則該方法引發IllegalArgumentException。
以下示例說明了Ints.min()方法:
範例1:
// Java code to show implementation of
// Guava's Ints.min() method
import com.google.common.primitives.Ints;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating an integer array
int[] arr = { 2, 4, 6, 10, 0, -5, 15 };
// Using Ints.min() method to get the
// minimum value present in the array
System.out.println("Minimum Value is:"
+ Ints.min(arr));
}
}
輸出:
Minimum Value is:-5
範例2:演示IllegalArgumentException
// Java code to show implementation of
// Guava's Ints.min() method
import com.google.common.primitives.Ints;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
try {
// Creating an integer array
int[] arr = {};
// Using Ints.min() method to get the
// minimum value present in the array
// This should raise "IllegalArgumentException"
// as the array is empty
System.out.println("Minimum Value is:"
+ Ints.min(arr));
}
catch (Exception e) {
System.out.println("Exception:" + e);
}
}
}
輸出:
Exception:java.lang.IllegalArgumentException
相關用法
- Java Guava Ints max()用法及代碼示例
- Java Guava Ints contains()用法及代碼示例
- Java Guava Ints lastIndexOf()用法及代碼示例
- Java Guava Ints indexOf()用法及代碼示例
- Java Guava Ints join()用法及代碼示例
- Java Guava Ints toArray()用法及代碼示例
- Java Guava Ints concat()用法及代碼示例
- Java Guava Ints asList()用法及代碼示例
- Java Guava Ints.hashCode()用法及代碼示例
- Java Guava Ints.compare()用法及代碼示例
- Java Ints.indexOf(int[] array, int[] target)用法及代碼示例
- Java Guava Sets union()用法及代碼示例
- Java Guava Sets difference()用法及代碼示例
- Java Guava BigIntegerMath binomial()用法及代碼示例
注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 Ints min() function | Guava | Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。