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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。