Byte: byteValue() : Byte « java.lang « Java by API
- Java by API
- java.lang
- Byte
Byte: byteValue()
public class Main {
public static void main(String[] args) {
byte by = (byte) 'A';
Byte by2 = new Byte(by);
System.out.println(by2.byteValue());
}
}
Related examples in the same category