Java Character MAX_RADIX
Syntax
Character.MAX_RADIX has the following syntax.
public static final int MAX_RADIX
Example
In the following code shows how to use Character.MAX_RADIX field.
public class Main {
/* www.java 2 s . c o m*/
public static void main(String[] args) {
System.out.println("Character.MAX_RADIX:"+Character.MAX_RADIX);
}
}
The code above generates the following result.