Java Byte.intValue()
Syntax
Byte.intValue() has the following syntax.
public int intValue()
Example
In the following code shows how to use Byte.intValue() method.
public class Main {
public static void main(String[] args) {
Byte byteObject = new Byte("10");
/* ww w . j ava 2 s .co m*/
int i = byteObject.intValue();
System.out.println("int:"+i);
}
}
The output: