Object Oriented Programming Notes(C++)

Revision en24, by abdude824, 2021-08-22 17:51:00

OOPs are actually very simple but we can have some difficult questions on OOPs as well. We will first have short notes of theory(which can be asked in form of questions) and then shift to questions.

I am refering E balaguruswamy book for this. These are short notes and may miss something, if you think something is missing please comment. Also, we would be using this track:

  1. Introduction to classes and objects
  2. Constructors and Destructors
  3. Operator Overloading
  4. Inheritance
  5. Polymorphism

We will be discussing major topics here and actually difficult ones. You must know basic OOPs.

Introduction

C structures Vs C++ Classes
General structure of classes
Visibility labels(Public, private, protected
Some terms and their meaning
For CP lovers, here is class based implementation of segment trees and Euler tours, representing inheritance as well
Memory allocation of member variables and functions accross objects

Static Data members

As we saw in memory allocation diagram, copies of member variables are made for different objects. But if we want a common variable for all objects of class? For example in an employee class, we need to find the number of employees at a specific time. We can do it using a global variable but that variable can interfere in the whole working of program. We can use a static data member. Static members are initialized to 0 and one important thing to note is that type and scope of static variable is defined outside the class. This is because they are not of every object but are unique to a class. And where we have variables, we do have functions also. Static member functions are also specific to a class, and can access only static members. Please have a code for implementation of both(Here I have kept the static member function outside to generalize the concept that static members are specific to class but they can be defined and implemented inside the class as well)

Sample Code for static data members

All other operations like making an array, vector, or any other STL container works the same for classes(Although you have to make a custom comparator in case of sorting through STL) remains almost same. We can also pass objects as arguments which is self explanatory.

Friendly Functions

There can be a case when we want some function to access private members of a class. For example, suppose there are two classes, Software engineers and Software testers. We want to find maximum income between both of the classes(Although many testers may not be eligible to pay taxes in India(Minimum salary is 5LPA for tax payers)). But we don't want to use the private member "income" as we can't access private members using objects directly. So, what we do is we make a friend function which can access private members of both the classes outside of both of them. This way, it can access both the classes without actually being a part of the class. (Obviously, we have to define that a particular function is friend inside the class as it would be a security threat if any function can be friend)

Code for Friend Functions

If a member function do not alter any data, we put a const ahead of its definition: void changeNothing() const;

Pointers to members of a class

Suppose this is the class:

class A{
private:
    int x;
};

We define a pointer to X as: int A ::* it=&A :: m;

Now, it contains address of m and we can refer to m using *it.

Constructors and Destructors

Constructor

Special member functions having the same name as the class used to initialize objects. Whenever a new object is created, this member function is called.

Constructor example in segment tree implementation

Constructors can be parametrized or without any parameters as well. Constructors without any parameters are default constructors. Please note that if a parameterized constructor is present and no default constructor is present, this type of initialization will give you an error: segTree s; because compiler couldn't find any default constructor. But if no constructor is present, compiler supplies one.

Some properties of constructors:

The parameters of a constructor can be of any type except for that class only but it can accept a reference to the class. These constructors are called copy constructors. Copy Constructors can be used to create two objects with same member variables.

Example of Copy Constructors

We can also use constructors dynamically. That is, we can use them after initialization of objects also.

Code for Dynamic Initialization of Objects

Destructors

A destructor, as name suggests, is used to delete objects that have been created by a constructor. As we saw in memory allocation, each object has its own memory for its member variables. Suppose we have a vector and we are resizing it inside the constructor. Then we should use a destructor as well to free that memory. (Not in general, but in big firms, yes its necessary)

Destructor Example

Operator Overloading

This is perhaps the most interesting part of OOPs. As we saw initially, we can't do a (+) operation on structures, but we can do it in classes using operator overloading. For example, we can use a (+) operator for strings to concatenate them in C++. Similarly, we can modify the meaning of an operator for a class. The possibilities with this are immense. Just imagine, you can actually add maps, sets according to the meaning interpreted by you. You can practically create your own language with this feature. But there are some operators you can't overload.

List of operators you can't overload

Please note that the precedence of the operators don't change. Multiplication will have a higher precedence than addition.

Let's Overload some Unary and Binary Operators!

  1. Unary Operator:
Example of Unary operator, in a class complex, which is like an actual complex number

Now, you might be having a feel how all the STL containers are made. And that's why OOPs are hell awesome!

Now let's overload a binary operator.

Overloading subtraction operator

Left hand operand is used to invoke the operator and right hand operand is passed as an argument.

Diagram representing the operator overloading process

As we used a friend function in dealing with "<<" operator, we have to use a friend member for dealing with any operator in which any one operator is not of the same type.

Type Conversion

We all know type conversions very well (Assuming you are familiar with C++). We use type conversions to convert a double to int, or a character to integer. Although it's not extreme necessary, but it saves some time. These are the three cases we can have :

  1. Basic to User defined class.
  2. User defined class to Basic
  3. User defined to another user defined

To be updated

Inheritance

To be updated

Polymorphism

To be updated

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en29 English abdude824 2022-08-10 12:46:07 2 (published)
en28 English abdude824 2022-08-10 12:45:45 64 Reverted to en26
en27 English abdude824 2022-07-21 14:19:23 64 (saved to drafts)
en26 English abdude824 2021-09-20 10:08:43 950
en25 English abdude824 2021-08-25 12:30:52 97
en24 English abdude824 2021-08-22 17:51:00 369
en23 English abdude824 2021-08-21 09:49:20 38 Tiny change: ' type.\n\n\n## Inh' -> ' type.\n\n**Type Conversion**\n\nTo be updated\n\n## Inh' (published)
en22 English abdude824 2021-08-20 21:07:00 480
en21 English abdude824 2021-08-20 19:56:08 1363
en20 English abdude824 2021-08-20 19:41:14 467
en19 English abdude824 2021-08-20 19:34:03 1012 Tiny change: ' form a+$i%b">\n\n</s' -> ' form a+$i$b">\n\n</s'
en18 English abdude824 2021-08-20 17:44:31 2 Tiny change: ' would be suing this t' -> ' would be using this t'
en17 English abdude824 2021-08-20 15:20:16 126
en16 English abdude824 2021-08-20 13:19:28 16
en15 English abdude824 2021-08-20 13:17:47 762
en14 English abdude824 2021-08-20 12:51:38 764
en13 English abdude824 2021-08-20 12:36:39 103
en12 English abdude824 2021-08-20 12:29:44 1758
en11 English abdude824 2021-08-20 11:57:34 2049
en10 English abdude824 2021-08-20 11:43:02 130
en9 English abdude824 2021-08-19 22:32:45 907
en8 English abdude824 2021-08-19 21:26:19 2653
en7 English abdude824 2021-08-19 20:57:41 1054
en6 English abdude824 2021-08-19 15:24:19 3
en5 English abdude824 2021-08-17 21:33:53 894 Tiny change: '/articles/n5kflb4dv5c2koi41uk2.png)\n</' -> '/articles/qnvv0uasstduy2zueqo2.png)\n</'
en4 English abdude824 2021-08-17 10:59:06 4 Tiny change: 'ask/1138\n~~~~~\n#' -> 'ask/1138\n\n~~~~~\n#'
en3 English abdude824 2021-08-17 10:58:45 5290
en2 English abdude824 2021-08-17 10:37:59 559
en1 English abdude824 2021-08-17 10:31:10 1201 Initial revision (saved to drafts)