LATE BINDING POLYMORPHISM in C++ Selecting functions during execution time is called late binding or dynamic binding or dynamic linkage. Lat...
Wednesday, 29 April 2026
POLYMORPHISM WITH POINTERS in C++
POLYMORPHISM WITH POINTERS in C++ Pointers are also central to polymorphism in C++. To enable polymorphism, C++ allows a pointer in a base c...
Polymorphism and Virtual Functions in C++
Polymorphism and Virtual Functions in C++ A true object-oriented programming paradigm must consist of three items: data abstraction and...
Thursday, 23 April 2026
OVERLOADING OF UNARY OPERATORS in C++
OVERLOADING OF UNARY OPERATORS in C++ Unary operators overloaded by member functions take no formal arguments, whereas when they are overloa...
Wednesday, 22 April 2026
OVERLOADING OF BINARY OPERATORS in C++
OVERLOADING OF BINARY OPERATORS in C++ Binary operators overloaded by means of member functions take one formal argument which is the value ...
Operator Overloading in C++
Operator Overloading in C++ Operator overloading is another example of C++ polymorphism. In fact, some form of operator overloading is avail...
Tuesday, 21 April 2026
FUNCTION OVERLOADING in C++
FUNCTION OVERLOADING in C++ Function overloading is a logical method of calling several functions with different arguments and data types ...
Subscribe to:
Posts (Atom)
Labels
POPULAR POST
-
1. Program Structure in C++ A C++ program follows a well-defined structure. The basic components are: #include <iostream> using namesp...
-
POST Method in ASP.NET The POST method transfers information via HTTP headers. The information is encoded as described in case of GET method...
-
ASP.NET Page Life Cycle Events ASP.NET Page Life Cycle Events at every stage of the page life cycle, the page raises some events, which co...