My neighbor is taking \"Intro to Java\", and asked me to help explain a few of the first-day concepts. I realized that since I do this everyday, I don\'t have the beginner\
I can say with an example: Animal, Human, car etc. Here Animal, Human, car considered as Class, Now consider Dog: Here Dog considered as Object, who is under Animal class. If we consider a dog, then its state are - name, breed, color, and the behavior are - barking,Eating, running, Sleeping. Now we can say, A class is a blue print of Animal class from which individual object is created. Here barking(), running(), eating(),Sleeping() etc. are method of the particular Dog object. I think it will be little easier to understand the difference between Class and object.