Jul 28 2008 06:00 AM 27067 18 Wrapping an Object jegacjb86 What does "wrapping" an object mean? SreerangKulkarni Profile Answers by SreerangKulkarni Questions by SreerangKulkarni Oct 29th, 2009 When an object A is said to "Wrap" object B, it means that Object A HAS A reference to the Object B and deligates calls to it. karthik_knight2000 Profile Answers by karthik_knight2000 Questions by karthik_knight2000 Dec 3rd, 2008 Wrapping an object means we are covering that object, say for example in Java we can say String is a class as well as String is a data type.String s; // here s is object of String class ... Answer Question Select Best Answer
Jul 28 2008 06:00 AM 27067 18 Wrapping an Object jegacjb86 What does "wrapping" an object mean? SreerangKulkarni Profile Answers by SreerangKulkarni Questions by SreerangKulkarni Oct 29th, 2009 When an object A is said to "Wrap" object B, it means that Object A HAS A reference to the Object B and deligates calls to it. karthik_knight2000 Profile Answers by karthik_knight2000 Questions by karthik_knight2000 Dec 3rd, 2008 Wrapping an object means we are covering that object, say for example in Java we can say String is a class as well as String is a data type.String s; // here s is object of String class ... Answer Question Select Best Answer
SreerangKulkarni Profile Answers by SreerangKulkarni Questions by SreerangKulkarni Oct 29th, 2009 When an object A is said to "Wrap" object B, it means that Object A HAS A reference to the Object B and deligates calls to it.
karthik_knight2000 Profile Answers by karthik_knight2000 Questions by karthik_knight2000 Dec 3rd, 2008 Wrapping an object means we are covering that object, say for example in Java we can say String is a class as well as String is a data type.String s; // here s is object of String class ...