what really is a wrapper object?

Hi all,What really is a wrapper object? Can't seem to find a definition that is easily understood.Thanks
[126 byte] By [pantooa] at [2007-11-26 14:54:15]
# 1
OMG! Google is broken again.
floundera at 2007-7-8 8:42:41 > top of Java-index,Java Essentials,New To Java...
# 2
I guess this is too complicated, then: http://www.janeg.ca/scjp/pkglang/wrapper.html
ChuckBinga at 2007-7-8 8:42:41 > top of Java-index,Java Essentials,New To Java...
# 3

Good Day Friend!

Let me explain you what is wrapper object

java uses primitive types such as int and char for performance reasons. these data types are not part of the object hierarchy. They are passed by value to methods and cannot be directly passed by reference. Also, there is no way for two methods to refer to the same instance of an int. At times, we need to create an object representation for one of these primitive types.For eg, there are collection of these classes, that deal only with objects; to store a primitive type in one of these classes, we need to wrap the primitive type in a class. To address this need, Java provides classes that correspond to each of the primitive types. In essence, these classes encapsulate or wrap the primitive types with in a class. Thus they are commonly referred to as type wrappers.

vasu_gba at 2007-7-8 8:42:41 > top of Java-index,Java Essentials,New To Java...
# 4
Hey vasuIf you are going to do their homework for them, why don't you type it up neatly in a Word document but make sure you only include the info that is correct.
floundera at 2007-7-8 8:42:41 > top of Java-index,Java Essentials,New To Java...
# 5
Good day friends!I am not doing home work for them. If they need it in clear text format, just let them give me duke dollars, i will send them to their mail address
vasu_gba at 2007-7-8 8:42:41 > top of Java-index,Java Essentials,New To Java...
# 6
> I am not doing home work for them. If they need it in> clear text format, just > let them give me duke dollars, i will send them to> their mail addressYou do know that java doesn't have pass by reference?
kajbja at 2007-7-8 8:42:41 > top of Java-index,Java Essentials,New To Java...