Topics
Operating System
- Introduction to Operating System (OS)
- Idea of an Operating System
- Windows NT
- LINUX
- File Systems and Its types
- File Operations
- Access Methods and its types
- Allocation Methods
- Concepts Related to Process Management
- Concepts related to memory management
- Basics of Graphical User Interface (GUI)
- Access and Security Aspects of O.S.
Data Structures
C++ Programming
- Introduction to C++ Programming
- Idea Behind Object-Orientated Programming
- Object-orientated programming approach
- Object-Oriented Terms and Concepts
- Classes and Objects
- Constructors and Destructors
- Functions in C + +
- Arrays in C++
- Pointers in C++
- References in C++
- Strings in C++
- Inheritance
- Virtual functions and polymorphism
- Friends in C++
- Operator overloading and type conversions
- Files and Stream
HyperTex Markup Language (HTML)
- Introduction to Virtual Function
- Introduction to Polymorphism
- Pointer to object and derived class
- Rules for Virtual functions
- Use of virtual in c++
Virtual functions and polymorphism
Polymorphism
Polymorphism stands for 'many forms'. The concept of polymorphism is already implemented using the overloaded functions and operators. This is called early binding or static linking as the compiler already knows about the overloaded functions before runtime. Run Time Polymorphism is achieved through Virtual Functions.
This pointer
The keyword ‘this’ represents a pointer that points to the object for which this function was called.
For example : the function call
A.max();
will set the pointer this to the address of the object A. The pointer this acts as an implicit argument to all the member functions.
Virtual functions
When we use same function name in both the base and derived classes, the function in base class is declared as virtual preceding its normal declaration. When a function is made virtual, C++ determines which function to use at run time based on the type of object pointed to by the base pointer. Thus, by making base pointer point to different objects, we can execute different versions of the virtual function.
Rules for virtual functions
- The virtual functions must be members of some class.
- They cannot be static members.
- They are accessed by using object pointers.
- We cannot have virtual constructors, but we can have virtual destructors.
- Virtual functions are defined in base class, they need not be redefined in derived class. 6. A virtual function can be a friend of another class.