InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between An Object And Object Reference? |
|
Answer» An OBJECT is an INSTANCE of a CLASS. Object reference is a pointer to the object. There can be MANY REFERENCES to the same object. An object is an instance of a class. Object reference is a pointer to the object. There can be many references to the same object. |
|