Computer Science, asked by AnantaSahana, 6 months ago

What is the difference between 'Object' and 'Class'...pls any1 help out with this...​

Answers

Answered by brainliestnp
2

Answer:

No. Object and Class

1) Object is an instance of a class. Class is a blueprint or template from which objects are created.

2) Object is a real world entity such as pen, laptop, mobile, bed, keyboard, mouse, chair etc. Class is a group of similar objects.

3) Object is a physical entity. Class is a logical entity.

4) Object is created through new keyword mainly e.g.

Student s1=new Student(); Class is declared using class keyword e.g.

class Student{}

5) Object is created many times as per requirement. Class is declared once.

6) Object allocates memory when it is created. Class doesn't allocated memory when it is created.

7) There are many ways to create object in java such as new keyword, newInstance() method, clone() method, factory method and deserialization. There is only one way to define class in java using class keyword.

Let's see some real life example of class and object in java to understand the difference well:

Explanation:

hope \: it \: helps \: u

Answered by ahanamukherjee1210
2

Answer:

here goes ur ans friend.

goodnite.

Explanation:

The difference is simple and conceptual. A class is a template for objects. ... An object is a member or an "instance" of a class. An object has a state in which all of its properties have values that you either explicitly define or that are defined by default settings

.Object − Objects have states and behaviors. Example: A dog has states - color, name, breed as well as behaviors – wagging the tail, barking, eating. An object is an instance of a class. Class − A class can be defined as a template/blueprint that describes the behavior/state that the object of its type support..

Similar questions