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 |
Why to use nested classes in java?
What is keyword auto for?
There can be a abstract class without abstract methods, but what is the need to declare a class abstract if it doesn't contain abstract methods?
What do you mean by pointer value and address?
What are java methods?
Is age a discrete variable?
What is a double vs float?
what is marker interface ? what is the necessity of it?
Is it possible to create Userdefined Unchecked Exception also?If Yes, give an example?
why is S capital in System.out.println ????
all are saying java doesn't support multiple inheritance but by default Object class is super class for all the user defined classes and we can extend atmost one class so each class can extend more than one class so java supports multiple inheritance?i am confused with this,pls any one explain me.
What is default exception handling in java?