Answer Posted / guest
The wrapper classes can take constructors of either the
type they are designed to wrap or of a String that can be
converted to that type. Thus the Integer class can take a
number that could be contained by an int, but an error will
occur if you try to pass a number with a floating point
component. Remember that the wrapper classes are just that
classes, they are not primitives and instances of the
wrappers can only be manipulated in the same way as any
class. You may get questions on the exam with code that
uses standard math operations to manipulate instances of
wrappers. You can of course use the + operator where it
would implicitly call the toString method, but as soon as
you see the - * or % operator, beware.
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
What is a default constructor and also define copy contrucyor?
Is java call by value?
Explain the differences between static and dynamic variables?
How to convert string to char and vice versa?
How do you represent a space in regex java?
What do you know about the garbate collector?
Is java a virus?
Can we access the non-final local variable, inside the local inner class?
how to create daemon thread in java?
What is lazy initialization in java?
How can an object be unreferenced?
How can we make sure main() is the last thread to finish in java program?
What is type inference in java8?
Describe the various concepts related to object oriented programming (oop).
What is the java reflection api? Why it’s so important to have?