what is wrapper class atually done?

can any one tell me what is wrapper class actually done?
[70 byte] By [Hem.21a] at [2007-11-27 1:36:53]
# 1
Actully in case of java we treat allwas object , so when we want to used primitive data type like object than this classes is used . sun provides wrapper class as all primitive dat type. exp. int-INTEGER
sinhasinhaa at 2007-7-12 0:46:51 > top of Java-index,Java Essentials,Java Programming...
# 2

wrapper class in java is done to wrap up some object/primitive and give some efficient functionality and easy usage.

we have many wrapper classes in java API like Integer, Double, BufferedWriter.

BufferedWriter class is a wrapper for FileWriter which is efficient than FileWriter as this reads large chunks of data from file thus, minimising frequent access to file (IO Operations are slower and expensive) and also provides some new functionalities.

Duke Stars :) ?

Satish_Patila at 2007-7-12 0:46:52 > top of Java-index,Java Essentials,Java Programming...
# 3
> BufferedWriter class is a wrapper for FileWriter which is efficient > than FileWriter as this reads large chunks of data from file thus,A Writer which reads? How comes?
BIJ001a at 2007-7-12 0:46:52 > top of Java-index,Java Essentials,Java Programming...
# 4
> > than FileWriter as this reads large chunks of data> from file thus,> > A Writer which reads? How comes?Sorry, Writer writes...:)
Satish_Patila at 2007-7-12 0:46:52 > top of Java-index,Java Essentials,Java Programming...