Posted on
September 14th, 2008 2 Comments
Object oriented programming is a new way of approaching the job of programming. Object oriented programming will seem very unnatural to a programmer with a lot of procedural programming experience. This tutorial is the beginning of the definition of object oriented programming, and we will study the topic of encapsulation which is a “divide and conquer”...
Read More |
Make a Comment
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
Posted on
September 10th, 2008 0 Comments
The purpose of this tutorial is to illustrate how to use some of the traditional aspects of C or C++ with classes and objects. Pointers to an object as well as pointers within an object will be illustrated. Arrays embedded within an object, and an array of objects will be illustrated. Since objects are simply another C++ data construct, all of these things are...
Read More |
Make a Comment