C++ – Virtual Mechanism in C++
Hello Friends, Today, in this article we will discuss, how Virtual mechanism is being handled in compiler level . The virtual mechanism mostly used to accomplish the dynamic polymorphism, which we discusses in one...
Hello Friends, Today, in this article we will discuss, how Virtual mechanism is being handled in compiler level . The virtual mechanism mostly used to accomplish the dynamic polymorphism, which we discusses in one...
Hello Friends, Today In this article we will discuss about the /automatic Type Conversation in case of user defined types. We have seen compiler does the type conversion in case of built in data...
Hello Friends, Today, in this article we will mostly discuss about Dynamic Polymorphism and the difference between Static Polymorphism and Dynamic Polymorphism . Static Polymorphism : If function call binding is performed at compile time. This is also known...
Polymorphism: In programming language we can say : Different functions can have the same name and if programmer call a function, which one to be executed is decided based on the arguments or the type...
In this article we will discuss about the difference between Abstract class and Interface. Abstract Class: An abstract class is, conceptually, a class which contain at least one pure virtual function. It can’t be...
In this article, we will discuss how to sort a list of objects in random order, where the order is defined by the user.
You must be logged in to post a comment.