What is meant by wrapper classes?
Answers were Sorted based on User's Feedback
Answer / vishnu
Wrapper class is a wrapper around a primitive data type. It
represents primitive data types in their corresponding class
instances e.g. a boolean data type can be represented as a
Boolean class instance. All of the primitive wrapper classes
in Java are immutable i.e. once assigned a value to a
wrapper class instance cannot be changed further.
| Is This Answer Correct ? | 12 Yes | 0 No |
What are parameters in a method?
What is the destroy method?
What is the requirement of thread in java?
What is the symbol for average?
Can a lock be acquired on a class in java programming?
What method is used to compare two strings ?
What is the meaning of course?
Define Compiling?
What is advantage of java?
is it mandatory to deaclare all variables public static fianl in interfaces?if i declare like in the below program, public interface A { public static final int I=0; int j=0; } in interface A,what is the difference between I,j?
Can we have more than one package statement in the source file?
Variables used in a switch statement can be used with which datatypes?