This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
dido:public:ra:xapend:xapend.a_glossary:c:class [2021/08/11 12:45] murphy |
dido:public:ra:xapend:xapend.a_glossary:c:class [2021/10/28 01:29] (current) nick |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ===== Class ===== | ===== Class ===== | ||
| - | [[dido:public:ra:xapend:xapend.a_glossary| Return to Glossary ]] | + | [[dido:public:ra:xapend:xapend.a_glossary:start| Return to Glossary ]] |
| - | A **Class**, in [[dido:public:ra:xapend:xapend.a_glossary:p:programlang | Programming Lanuages]], are a user-defined data type, which holds its own data members and member functions, which can be accessed and used by creating an [[dido:public:ra:xapend:xapend.a_glossary:i:instance|instance]] of that class. A class is like a blueprint for an [[dido:public:ra:xapend:xapend.a_glossary:o:object|object]]. | + | A **Class**, in [[dido:public:ra:xapend:xapend.a_glossary:p:programlang | Programming Languages]], are a user-defined data type, which holds its own data members and member functions, which can be accessed and used by creating an [[dido:public:ra:xapend:xapend.a_glossary:i:instance|instance]] of that class. A class is like a blueprint for an [[dido:public:ra:xapend:xapend.a_glossary:o:object|object]]. |
| For Example: Consider the Class of Cars. There may be many cars with different names and brands but all of them will share some common properties like all of them will have 4 wheels, Speed Limit, Mileage range, etc. So here, Car is the class, and wheels, speed limits, mileage are their properties. | For Example: Consider the Class of Cars. There may be many cars with different names and brands but all of them will share some common properties like all of them will have 4 wheels, Speed Limit, Mileage range, etc. So here, Car is the class, and wheels, speed limits, mileage are their properties. | ||
| A Class is a user-defined data type that has data members and member functions. | A Class is a user-defined data type that has data members and member functions. | ||
| - | Data members are the data variables and member functions are the functions used to manipulate these variables and together these data members and member functions define the properties and behavior of the objects in a Class. | + | Data members are the data variables and member functions are the functions used to manipulate these variables, and together these data members and member functions define the properties and behavior of the objects in a Class. |
| In the above example of class Car, the data member will be speed limit, mileage, etc. and member functions can apply brakes, increase speed, etc. | In the above example of class Car, the data member will be speed limit, mileage, etc. and member functions can apply brakes, increase speed, etc. | ||