use of wrapper classes?
Answers were Sorted based on User's Feedback
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 |
Answer / vino
wrappper class uses for primitive datatype act as object.
ex:int-Integer
| Is This Answer Correct ? | 0 Yes | 0 No |
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 |
Can we pass a primitive type by reference in java? How
What are integer overflows and underflows and how to handle them?
What is command line argument in java?
Difference between Preemptive scheduling vs. Time slicing?
Explain the different forms of polymorphism?
what is stringtolennizer with example?
What is the importance of main method in Java?
How do you sort in java?
wHAT IS DEFAULT SPECIFIER IN JAVA wHAT IS DEFAULT CONSTRUCTOR IN JAVA wHAT IS DEFAULT METHOD IN JAVA
What is the difference between length and length () in java?
What is the relationship between class and object?
What do you mean by static variable?