use of wrapper classes?

Answers were Sorted based on User's Feedback



use of wrapper classes?..

Answer / rakesh kumar mishra

Collection accepts only object not primitive data-type And
server also works on only Objects.
So By help of wrapper class we can convert primitive
data-type to Object.

Is This Answer Correct ?    18 Yes 0 No

use of wrapper classes?..

Answer / vino

wrappper class uses for primitive datatype act as object.
ex:int-Integer

Is This Answer Correct ?    0 Yes 0 No

use of wrapper classes?..

Answer / qamrun nisa

Wrapper classes are used to wrap primitive types (eg: int,
double, etc) in Objects which can be placed into Vectors,
and many, many other uses.

Following table lists the primitive types and the
corresponding wrapper classes:

Primitive Wrapper

Boolean java.lang.Boolean
Byte java.lang.Byte
Char java.lang.Character
double java.lang.Double
Float java.lang.Float
Int java.lang.Integer
Long java.lang.Long
Short java.lang.Short
Void java.lang.Void

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Core Java Interview Questions

Does chrome use java?

0 Answers  


What is the basic difference between string and stringbuffer object?

0 Answers  


how and when compiler knows that the Java code throws the checked Exception.

2 Answers   HSBC,


Write a program to find the greatest of three numbers in java?

0 Answers  


What does string intern() method do?

0 Answers  






How to add menushortcut to menu item?

0 Answers  


Define immutable object?

0 Answers  


Can a method be overloaded based on different return type but same argument type?

0 Answers  


does java support default argument in Method?

1 Answers  


What is the main purpose of serialization in java?

0 Answers  


What happens when I use / and % with a negative numerator?

0 Answers  


make a method which any number and any type of argument and print sum of that arguments.....

0 Answers  


Categories