toString() Method in java conversion Byte to String

Java Programming Language / Number Class in java

874

Program:

 public class BytetoStringMethod {
    public static void main(String[] args){

        Byte d = new Byte("6");
        System.out.println("d = "+ d.toString() );
        // result is d = 6

    }
}

Output:

d = 6
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.