What is the difference between Object and Instance?
Answers were Sorted based on User's Feedback
Answer / siva
instance means non-static variables memory location. Object means non-static variables + non-static methods memory location
| Is This Answer Correct ? | 11 Yes | 1 No |
For example, if I declare a class like
Animal a=new Animal();
Is variable 'a' in above is an instance which has an object of Animal type?
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / subba reddy
object means.
just create variable for class this is also called reference.
instance means.
create object for the class using new operator or new instance .
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / nagarjuna
Object is the creating memory location by using new operator
Instance is the creating the reference.
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / srinivaskumar.nimmana
All objects except array object are instances,i.e every object except array object can be instance but every instance may not be object.
| Is This Answer Correct ? | 1 Yes | 6 No |
Why does my function print none?
do I need to use synchronized on setvalue(int)? : Java thread
What is array class in java?
How can we find the actual size of an object on the heap?
What is prime number in java?
System.out.println("somestring"); It will create any object or not
Explain the importance of thread scheduler in java?
What is comparator in java?
Write POJO class as a key to hashmap???
What is the use of a conditional inclusion statement in Java ?
Where we write javascript code in html page?
What is “try and catch” in java