|
| Total Answers and Comments: 3 |
Last Update: November 15, 2005 Asked by: nitinsikdar |
|
| | |
|
No best answer available. Please pick the good answer available or submit your answer. | |
October 26, 2005 02:39:37 | #1 |
| srikanth |
|
|
RE: What is the diffrence between Object & Instance?
| i think that when ever we are create an object by using new( ). JVM allocating memory to it instantly and that can use all the instance varibles with that instance of class |  | | Is this answer useful? Yes | No | | |
|
| |
|
November 03, 2005 01:25:18 | #2 |
| Mukesh Bansal |
|
|
RE: What is the diffrence between Object & Instance?
| Instance is you can is relationship in between the object and class. Lets suppose there are many objects in a program. You always assign a instance of a class to a object. like new ABC() is an instance of class ABC. ABC abc new ABC(); here abc is object which contains instance of class ABC. |  | | Is this answer useful? Yes | No | | |
|
| |
Go To Top
|