Tutorials
C++In object-oriented programming language C++, the data and functions (procedures to 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.
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 make up 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;.
|
There are different access specifiers for defining the data and functions present inside a class.
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:
When defining access specifiers, the programmer must use the keywords: private, public or protected when needed, followed by a semicolon and then define the data and member functions under it.
|
In the code above, the member x and y are defined as private access specifiers. The member function sum is defined as a public access specifier.
General structure for defining a class is:
|
Generally, in class, all members (data) would be declared as private and the member functions would be declared as public. Private is the default access level for specifiers. If no access specifiers are identified for members of a class, the members are defaulted to private access.
|
In this example, for members x and y of the class exforsys there are no access specifiers identified. exforsys would have the default access specifier as private.
Once the class is created, one or more objects can be created from the class as objects are instance of the class.
Juts as we declare a variable of data type int as:
int x;
Objects are also declared as:
class name followed by object name;
exforsys e1;
This declares e1 to be an object of class exforsys.
For example a complete class and object declaration is given below:
|
The object can also be declared immediately after the class definition. In other words the object name can also be placed immediately before the closing flower brace symbol } of the class declaration.
For example
|
The above code also declares an object e1 of class exforsys.
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.

| how can create a header file for a program to move a dot on the screen horizontally |

| how much memory will allocate for an object, if a class contains an integer variable and a user defined function? |

| where the memory is allocated for an object i.e, either in stack or heap memory? |
| what is word of int. |
|
Please write proper and complete procedure of using objects of classes for learners. |
| if we define a member function outside the class & then make it a inline function by writing 'inline' keyword &this will be changed into a function as it is defined inside the class, so sometimes why we define it outside & then make inline. |
| Why it is required to bundle variables and functions within class? |