Virtual Functions in C++
Polymorphism is a key concept in object-oriented programming that refers to the ability of objects...
Read MorePosted by M. Saqib | Sep 12, 2008 | C++ Programming: Different Articles on C++ Programming |
Polymorphism is a key concept in object-oriented programming that refers to the ability of objects...
Read MorePosted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
Container classes are the solution to a specific kind of code reuse problem. They are building blocks used to create object-oriented programs. They make the internals of a program much easier to construct. A container class describes an object that holds other objects. Container classes are so important that they were considered fundamental to early object-oriented languages
Read MorePosted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
Posted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
Posted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
The pointer is a variable which holds the memory address of another variable. If one variable contains the address of another variable, the first variable is said to point to the second. There are two types of pointer operators; * and &. the & is a unary operator that returns the memory address of its operand.
Read MorePosted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
Posted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
Posted by M. Saqib | Sep 10, 2008 | C++ Programming: Different Articles on C++ Programming |
An exception usually signals an error. One of the major features in C++ is exception handling, which is a better way of thinking about and handling errors. Thought it doesn’t always indicate an error, it can also signal some particularly unusual even in your program that deserves special attention. This article also covers try, throw, and catch, the C++ keywords that support exception handling.
Read More