Guava 的Ints.max()返回數組中的最大值。
用法:
public static int max(int... array)
參數:此方法將數組作為參數,它是int值的非空數組。
返回值:此方法返回數組中存在的大於或等於數組中其他每個值的值。
異常:如果array為空,則該方法引發IllegalArgumentException。
以下示例說明了Ints.max()方法:
範例1:
// Java code to show implementation of
// Guava's Ints.max() 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, 7 };
// Using Ints.max() method to get the
// maximum value present in the array
System.out.println("Maximum value is:"
+ Ints.max(arr));
}
}
輸出:
Maximum value is:15
範例2:演示IllegalArgumentException
// Java code to show implementation of
// Guava's Ints.max() 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.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:"
+ Ints.max(arr));
}
catch (Exception e) {
System.out.println("Exception:" + e);
}
}
}
輸出:
Exception:java.lang.IllegalArgumentException
相關用法
- Java Guava Ints min()用法及代碼示例
- 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 max() function | Guava | Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。