Objects and Classes in C++
manipulate the data) are bundled together as a self-contained unit called an object. A class is an extended concept similar to that of structure in C programming language; this class describes the data properties alone. In C++ programming language, class describes both the properties (data) and behaviors (functions) of objects. Classes are not objects, but they are used to instantiate objects.
Features of Class:
Classes contain data known as members and member functions. As a unit, the collection of members and member functions is an object. Therefore, this unit of objects makes up a class.How to write a Class:
In Structure in C programming language, a structure is specified with a name. The C++ programming language extends this concept. A class is specified with a name after the keyword class.The starting flower brace symbol '{'is placed at the beginning of the code. Following the flower brace symbol, the body of the class is defined with the member functions data. Then the class is closed with a flower brace symbol '}' and concluded with a colon ';'.
Sample Code
- class exforsys
- {
- data;
- member_functions;
- ...........
- };
Access specifiers:
Access specifiers are used to identify access rights for the data and member functions of the class. There are three main types of access specifiers in C++ programming language:- private
- public
- protected
- A private member within a class denotes that only members of the same class have accessibility. The private member is inaccessible from outside the class.
- Public members are accessible from outside the class.
- A protected access specifier is a stage between private and public access. If member functions defined in a class are protected, they cannot be accessed from outside the class but can be accessed from the derived class.
Sample Code
- class exforsys
- {
- private:
- int x,y;
- public:
- void sum()
- {
- ....
- ....
- }
- };
General Template of a class:
General structure for defining a class is:
Sample Code
- class classname
- {
- access_specifier:
- data_member;
- member_functions;
- access_specifier:
- data_member;
- member_functions;
- };
Sample Code
- class exforsys
- {
- int x,y;
- public:
- void sum()
- {
- ....
- ....
- }
- }
Creation of Objects:
Once the class is created, one or more objects can be created from the class as objects are instance of the class.Just as we declare a variable of data type int as:
int x;
Objects are also declared as:
class_name followed_by object_name;
Example:
exforsys e1;This declares e1 to be an object of class exforsys.
For example a complete class and object declaration is given below:
Sample Code
- class exforsys
- {
- private:
- int x,y;
- public:
- void sum()
- {
- ....
- ....
- }
- };
- void main()
- {
- exforsys e1;
- ....
- ....
- }
For example:
Sample Code
- class exforsys
- {
- private:
- int x,y;
- public:
- void sum()
- {
- ....
- ....
- }
- }e1;
It is important to understand that in object-oriented programming language, when a class is created no memory is allocated. It is only when an object is created is memory then allocated.
No comments:
Post a Comment