What do u mean by wrapper Class?
What do u mean by Jvm... How do u change JVM for other OS?
Or No need to Change ...? its like tricky
Answer Posted / rajesh
"Wrapper class" has two meanings.
A class with a similar name to a primitive type, which
encapsulates the value of that primitive, and provides
methods which relate to that sort of primitive.
A class which calls methods of something else, and adds an
additional layer of functionality.
The first sort includes Integer, Double, etc, and there are
(I think) also classes like Void. Also an interface called
NullType.
In the 2nd sort you could have a List and surround it with
a class which calls all the List methods, but makes sure
that all the calls become thread-safe. Look in the
Collections class for methods like synchronizedList.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
What is threaded programming and when is it used? : Java thread
What is the difference between char and char *?
What does singleton mean in java?
Can we have return statement in finally clause? What will happen?
What does method mean?
How hashmap works in java?
What is sizeof () operator?
What is slash r?
What is encapsulation in java?
Is java an ide?
Can you inherit from an abstract class java?
What are the ways to instantiate the class class?
List out five keywords related to exception handling ?
What is the synonym of framework?
What is ‘has a’’ relationship in java?