new Byte(String s) : Byte « java.lang « Java by API






new Byte(String s)

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

   
  








Related examples in the same category

1.Byte.MAX_VALUE
2.Byte.MIN_VALUE
3.new Byte(byte value)
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)