Java Byte MIN_VALUE
Syntax
Byte.MIN_VALUE has the following syntax.
public static final byte MIN_VALUE
Example
In the following code shows how to use Byte.MIN_VALUE field.
public class Main {
/*w ww. j a v a 2s .co m*/
public static void main(String args[]) {
System.out.println("Min value from Byte class:"+Byte.MIN_VALUE);
}
}
The code above outputs: