What is the difference between an object, instance, and reference? They say that they have to create an instance to their application? What does that mean?
|
An object and an instance are the same thing. Personally I prefer to use the word "instance" when refering to a specific object of a specific type, for example "an instance of type Foo". But when talking about objects in general I would say "objects" rather than "instances". A reference either refers to a specific object or else it can be a null reference.
They probably mean you have to write something like this:
If you are unsure what type you should instantiate you should contact the developers of the application and ask for a more complete example. |
||||
|
|
|
"instance to an application" means nothing. "object" and "instance" are the same thing. There is a "class" that defines structure, and instances of that class (obtained with Reference is, in the Java context, a variable* - it is something pointing to an object/instance. For example, *Jon Skeet made a note about the difference between a variable and a reference. See his comment. It is an important distinction about how Java works when you invoke a method - pass-by-value.
|
||||
|
|
|
I think that Object = Instance. Reference is a "link" to an Object.
variable c stores a reference to an object of type Car. |
|||
|
|
Here an object is created from the |
||||
|
|
|
When you use the keyword
Take a look here
Refer Types, Values, and Variables for more information |
|||||||||||||||
|
|
The main differnece is when you say ClassName obj = null; you are just creating an object for that class. It's not an instance of that class. This statement will just allot memory for the static meber variables, not for the normal member variables. But when you say ClassName obj = new ClassName(); you are creating an instance of the class. This staement will allot memory all member variables. |
|||
|
|