cs notebook0
  • Introduction
  • Core Java
  • some notes
  • Data structure&algorithm
  • Garbage Collection
  • HashMap
  • Collection0
  • Collection1
  • Collection2
  • comparatorVScomparable
  • exception0
  • exception1
  • exception2
  • Enum in Java
  • JVM
  • Wrapper Classes in Java
  • String, int convert
  • HashSetVSTreeSetVSLinkedHashSet
  • Pair
Powered by GitBook
On this page
  • 1. Wrapper Classes in Java
  • Autoboxing:
  • Unboxing:

Was this helpful?

Wrapper Classes in Java

PreviousJVMNextString, int convert

Last updated 5 years ago

Was this helpful?

1. Wrapper Classes in Java

A Wrapper class is a class whose object wraps or contains a primitive data types. When we create an object to a wrapper class, it contains a field and in this field, we can store a primitive data types. In other words, we can wrap a primitive value into a wrapper class object.

Need of Wrapper Classes

  1. They convert primitive data types into objects. Objects are needed if we wish to modify the arguments passed into a method(because primitive types are passed by value).

  2. The classes in java.util package handles only objects and hence wrapper classes help in this case also.

  3. Data structures in the Collection framework, such as ArrayList and Vector, store only objects(reference types) and not primitive types.

  4. An object is needed to support synchronization in multithreading.

Autoboxing:

Automatic conversion of primitive types to the object of their corresponding wrapper classes is known as autoboxing. For example -- conversion of int to Integer, long to Long, double to Double etc.

Unboxing:

It is just the reverse process of autoboxing. Automatically converting an object of a wrapper class to its corresponding primitive type is known as unboxing. For example -- conversion of Integer to int, Long to long, Double to double etc.

e.g.

   byte a = 1;
    Byte byteObj = new Byte(a);

    System.out.println("byte object: "+byteObj);

    int ai  = 10;
    Integer intOb = new Integer(ai);
    System.out.println("int object: "+intOb);

    byte bb = byteObj;
    System.out.println("byte  : "+bb);
http://www.geeksforgeeks.org/wrapper-classes-java/