C and C++ Programming Resources

Custom Search

Inheritance

Posted on September 15th, 2008 0 Comments

In real life inheritance is what we acquire from our parents. For example our lifestyle, way of talking etc… In Object Oriented Programming Inheritance is the process by which objects of one class acquire the properties and functionality of objects of another class. It supports the concept of hierarchical classification. For example, the bird robin is a...
Read More | Make a Comment

OOP Techniques

Posted on September 11th, 2008 2 Comments

Before getting into the discussion of what are the object oriented programmingtechniques, let’s first look at What makes a programming language or programming methodology object oriented? Well, there are several indisputable pillars of object orientation. These features stand out more than any other as far as object orientation goes. They are Encapsulation ...
Read More | Make a Comment