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 your platform’s default character encoding?
Which class contains a method: cloneable or object?
What is a method in java?
What is difference between static variable and global variable?
What does I ++ mean?
How does remove work in java?
How do you input a string in java?
What is assembly language?
What is the finalize method do?
Define inheritance with reference to java.
What is the char data type?
Hi i am creating desktop application in that i want calling to mobile number. i have java telephone api (JTAPI) but i dont understand how it configure & use plese help me
Implement 2 stacks with just 1 array. The stack routines must not indicate overflow unless every slot in array is used.
How do you check if a string is lexicographically in java?
Explain the init method?