Guava – Chars.max()方法与实例

Guava Chars.max() 方法与实例

Chars.max() 是Guava库中Chars类的一个方法,用于查找数组中存在的 greatest 值。该方法返回的值是指定数组中最大的char值

语法:

public static char max(char... array)

参数: 这个方法需要一个强制参数 array ,它是一个非空的char值数组。

返回值: 本方法返回一个char值,是指定数组中的最大值。

异常情况: 如果数组为空,该方法会抛出IllegalArgumentException。

以下程序说明了上述方法的使用。

示例1:

// Java code to show implementation of
// Guava's Chars.max() method
  
import com.google.common.primitives.Chars;
import java.util.Arrays;
  
class GFG {
  
    // Driver's code
    public static void main(String[] args)
    {
        // Creating a character array
        char[] arr = { 'A', 'E', 'I', 'O', 'U' };
  
        // Using Chars.max() method to get the
        // maximum value present in the array
        System.out.println("Maximum value is : "
                           + Chars.max(arr));
    }
}

输出:

Maximum value is : U

示例2:

// Java code to show implementation of
// Guava's Chars.max() method
  
import com.google.common.primitives.Chars;
import java.util.Arrays;
  
class GFG {
    // Driver's code
    public static void main(String[] args)
    {
        // Creating a character array
        char[] arr = {};
  
        try {
            // Using Chars.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 : "
                               + Chars.max(arr));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}

输出:

java.lang.IllegalArgumentException

参考: https://google.github.io/guava/releases/18.0/api/docs/com/google/common/primitives/Chars.html#max(char…)

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程