The Number subclasses wrap primitive numeric types (Byte, Integer, Double, Float, Long, and Short).
What purpose do they serve?
|
The What purpose do they serve? |
||||
|
Those wrapper classes were created so that there was some way to use those primitive types with various container classes like |
|||||
|
|
Because the wrappers are
|
||||
|
|
|
Many early object oriented languages (Smalltalk etc.) have a common "top type" for all values which makes it easier to define generic operations that are agnostic to the type of values they shuttle around.
Java does not have such a top type, but Core language facilities |
|||
|
|
|
The wrapper classes in the Java API basically serve two primary purposes:
|
|||
|
|
As per this link java tutorial reasons are: There are three reasons that you might use a Number object rather than a primitive:
|
||||
|
|
|
The Java designers have - for good reasons or bad - chose not to base all types on
For example, due to the difference in semantics, collections would have to have two versions, one for Object and one for primitive types. It's just easier to make a single version of the collection and wrap the primitive types instead. |
|||||||||||
|
|
To treat them as objects and put them into List, Maps etc |
|||
|
|
So, that we are able to add primitive data types into collections. To add elements into collection they have to be of type For example:
|
|||
|
|
|
Personally, I use them as parameters for methods so i don't have to worry about the type of number being passed in. Then I can use methods like doubleValue() to get the value out and can carry on without worrying about what was passed in. This is the basic reason to ever have an Abstract Base Class. |
|||
|
|
|
There is a specific type of "pointer" that can point to any type (like I am referring to E.g. you can do this:
BUT this is not available for primitives i.e. there is no So if you want to have an algorithm that operates on arbitrary variables you can use variables of type java.lang.Object. You can see this in |
|||
|
|
|
Wrapper classes are the object representatives of primitive data types so whenever there is a situation to use them as objects we have to use them. Wrapper usage when we need objects and primitive when efficiency is required. |
|||
|
|
Booleanwhich is not aNumberandVoidwhich is notionally a wrapper forvoid– Peter Lawrey Jan 18 '12 at 20:14