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 of …
-
-
C++ – Virtual Mechanism in C++
-
C++ – Automatic type conversion for user defined data types
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 types. …
-
C++ – Dynamic Polymorphism
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 as …
-
C++ – Static Polymorphism
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 of …
-
C# – Show blinking label on Windows Form
Show blinking label on window forms application using c#
-
C++ – Different between Abstract Class and Interface
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 instantiated …
-
C++ – Sorting a list in a random order
In this article, we will discuss how to sort a list of objects in random order, where the order is defined by the user.