what is the difference between object and class
Answer Posted / prema
Class is a template or a plan for creating objects.
For example: For construction of building we need a plan.
Without plan we can't construct building. Here plan acts as
class. Building acts as object.Using the same plan we can
build any number of building.
In the same way we can create any number of objects for the
same class.Class tell whats the object state and behaviour.
Basically class tells what the object should have.
Object is an real world entity, which has something and
which know something. It means ojects has state and
behaviour.State of the object is represented by instance
variable. Behaviours are representd by methods.
| Is This Answer Correct ? | 24 Yes | 2 No |
Post New Answer View All Answers
What are synchronized methods ?
Can we declare the main method of our class as private?
What are the types of exceptions?
How do you use parseint in java?
What is the purpose of stub and skeleton?
explain different ways of using thread? : Java thread
What is java algorithm?
Why java is called not pure object oriented language?
Is call by reference possible in java?
Why there are some null interface in java? What does it mean?
Can we start a thread twice in java?
What is a boolean output?
What is method reference in java?
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?
What is parsing in java?