Java番石榴 |带有示例的 Longs.max() 方法
Longs.max()是 Guava 库中 Longs 类的一个方法,用于查找数组中存在的最大值。此方法返回的值是指定数组中最大的 long 值。
句法:
public static long max(long... array)
参数:此方法采用一个强制参数数组,该数组是一个长值的非空数组。
返回值:该方法返回一个long值,它是指定数组中的最大值。
异常:如果数组为空,该方法将抛出IllegalArgumentException 。
下面的程序说明了上述方法的使用:
示例 1:
// Java code to show implementation of
// Guava's Longs.max() method
import com.google.common.primitives.Longs;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a long array
long[] arr = { 2, 4, 6, 10, 0,
-5, 15, 7 };
// Using Longs.max() method to get the
// maximum value present in the array
System.out.println("Maximum value is : "
+ Longs.max(arr));
}
}
输出:
Maximum value is : 15
示例 2:
// Java code to show implementation of
// Guava's Longs.max() method
import com.google.common.primitives.Longs;
import java.util.Arrays;
class GFG {
// Driver's code
public static void main(String[] args)
{
// Creating a long array
long[] arr = {};
try {
// Using Longs.max() method to get the
// maximum value present in the array
// This should raise "IllegalArgumentException"
// as the array is empty
System.out.println("Maximum value is : "
+ Longs.max(arr));
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.lang.IllegalArgumentException
参考: https://google.github.io/guava/releases/21.0/api/docs/com/google/common/primitives/Longs.html#max-long…-