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
Why generics are used in java?
Write a program to find the whether a number is an Armstrong number or not?
Why java strings are immutable in nature?
How does hashset works in java?
Is java a prime method?
What are the differences between include directive and include action?
How to check if linked list contains loop in java?
Define jit compiler?
How do you convert boolean to boolean?
What is a native method in java programming?
Is heap stored in ram?
Explain the different forms of polymorphism?
Which containers use a flowlayout as their default layout in java programming?
What is a dynamic array java?
Mention the default values of all the elements of an array defined as an instance variable.