new Byte(byte value) : Byte « java.lang « Java by API






new Byte(byte value)

 
public class Main {
  public static void main(String[] args) {
    byte i = 10;
    
    Byte bObj = new Byte(i);
    System.out.println(bObj);
  }
}

   
  








Related examples in the same category

1.Byte.MAX_VALUE
2.Byte.MIN_VALUE
3.new Byte(String s)
4.Byte: byteValue()
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)