classes?

By reading about them, and OOP in general. I suspect that this is not the answer you want but it's an answer to the question that you asked. If you actually want a more specific answer, you should ask a more specific question. You should also provide a descriptive title for your threads. Your title is as much use as no title at all.
 
In this context, the word "class" is used in the sense of "classification". Programming objects are classified, like objects in the real world. In the real world there are objects that are classified as houses and objects that are classified as animals and objects that are classified as tables, etc. Each of those classifications is defined as having certain properties so for an object to be in a classification, it must have those properties. The same goes for programming classes. Each class is a definition of a classification of objects. You can then create objects of those types, with the defined properties of that class.
 
Back
Top Bottom