Byte: byteValue() : Byte « java.lang « Java by API






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

1.Byte.MAX_VALUE
2.Byte.MIN_VALUE
3.new Byte(byte value)
4.new Byte(String s)
5.Byte: doubleValue()
6.Byte: floatValue()
7.Byte: intValue()
8.Byte: longValue()
9.Byte: shortValue()
10.Byte: toString(byte b)
11.Byte: valueOf(String stringValue)