parseShort() Method, parse Short hexadecimal to short Decimal in java

Java Programming Language / Number Class in java

1271

Program:

 public class ParseShort {

   public static void main(String args[]) {

     short b = Short.parseShort("12",16);

      System.out.println(b);
   }
}

Output:

18
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.