Wrapper classes are classes that are used to make primitive variables into objects, and to make wrapped objects into primitives. int, boolean, double are all primitive data types and their respective wrapper classes are Integer, Boolean, and Double.
Wrapper classes are useful in storing primitive data types in higher level data structures such as Stack