Conversion (primitive data type) int to (wrapper class) Integer Number Object using valueof() method, binary to decimal

Java Programming Language / OOPs concept more

918

Program:

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

        //Converting from binary to decimal
        Integer intWrapper2 = Integer.valueOf("11011", 2);
        System.out.println("Value of intWrapper2 Object: "+ intWrapper2);

    }
}

Output:

Value of intWrapper2 Object: 27
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.