The major purpose of C++ programming
is to introduce the concept of object orientation to the C programming
language.
Object Oriented Programming is a
paradigm that provides many concepts such as inheritance, data binding,
polymorphism etc.
The programming paradigm where
everything is represented as an object is known as truly object-oriented
programming language. Smalltalk is considered as the first
truly object-oriented programming language.
OOPs (Object Oriented Programming System)
Object means a real
word entity such as pen, chair, table etc. Object-Oriented Programming is
a methodology or paradigm to design a program using classes and objects. It
simplifies the software development and maintenance by providing some concepts:
- Object
- Class
- Inheritance
- Polymorphism
- Abstraction
- Encapsulation
C++ Object
In C++, Object is a real world entity, for example, chair, car, pen, mobile, laptop etc.
In other words, object is an entity that has state and behaviour. Here, state means data and behaviour means functionality.
Object is a runtime entity, it is created at runtime.
Object is an instance of a class. All the members of the class can be accessed through object.
Let's see an example to create object of employee class using e1 as the reference variable.
In this example, Employee is the type and e1 is the reference variable that refers to the instance of Employee class.
C++ Class
In C++, class is a group of similar objects. It is a template from which objects are created. It can have fields, methods, constructors etc.
Let's see an example of C++ class that has three fields only.
- class Employee
- {
- public:
- int id; //field or data member
- float salary; //field or data member
- String name;//field or data member
- }
C++ Object and Class Example
Let's see an example of class that has two fields: id and name. It creates instance of the class, initializes the object and prints the object value.
- #include <iostream>
- using namespace std;
- class Employee {
- public:
- int id;//data member (also instance variable)
- string name;//data member(also instance variable)
- };
- int main() {
- Employee e1; //creating an object of Employee
- e1.id = 201;
- e1.name = "Anurag Rana";
- cout<<e1.id<<endl;
- cout<<e1.name<<endl;
- return 0;
- }
C++ Class Example: Initialize and Display data through method
Let's see another example of C++ class where we are initializing and displaying object through method.
- #include <iostream>
- using namespace std;
- class Employee {
- public:
- int id;//data member (also instance variable)
- string name;//data member(also instance variable)
- void insert(int i, string n)
- {
- id = i;
- name = n;
- }
- void display()
- {
- cout<<id<<" "<<name<<endl;
- }
- };
- int main(void) {
- Employee e1; //creating an object of Employee
- Employee e2; //creating an object of Employee
- e11.insert(1101, "Anurag");
- e2.insert(1102, "Pankaj");
- e1.display();
- e2.display();
- return 0;
- }
C++ Class Example: Store and Display Employee Information
Let's see another example of C++ class where we are storing and displaying employee information using method.
- #include <iostream>
- using namespace std;
- class Employee {
- public:
- int id;//data member (also instance variable)
- string name;//data member(also instance variable)
- float salary;
- void insert(int i, string n, float s)
- {
- id = i;
- name = n;
- salary = s;
- }
- void display()
- {
- cout<<id<<" "<<name<<" "<<salary<<endl;
- }
- };
- int main(void) {
- Employee e1; //creating an object of Employee
- Employee e2; //creating an object of Employee
- e1.insert(201, "Sonoo",990000);
- e2.insert(202, "Nakul", 29000);
- e1.display();
- e2.display();
- return 0;
- }
Comments
Post a Comment