C++ Xcode OOP Multiple Inheritance Tutorial

C++ XCode OOP Multiple Inheritance Tutorial

C++ XCode OOP Multiple Inheritance Tutorial

Here is a tutorial that introduces you to some more aspects of OOP … oops, forgot to say what OOP stands for … Object Oriented Programming … specifically regarding Multiple Inheritance.

Object-oriented programming (OOP) is a programming paradigm that represents concepts as “objects” that have data fields (attributes that describe the object) and associated procedures known as methods. Objects, which are usually instances of classes, are used to interact with one another to design applications and computer programs.

To me, the beauty of OOP is that it can relate to the nouns in our life. Think of an object that you can touch, like a wristwatch … it has features like its type of design, its size, its weight (ie. its properties), and it has objects that go to make it up, like cogs and wheels (ie. its components), and it has its related classes of objects like clock, alarm clock, oven timer etcetera (ie. its characteristics), and its more fundamental essence, the class of watch (ie. its inheritance).

In this tutorial we touch on Multiple Inheritance by the way one class can inherit from more than one other class.

Let’s see some C++ using XCode for this …

Link to Object Oriented Programming information … from Wikipedia from which quote above comes.
Link to Object Oriented Programming inventor information … Kristen Nygaard.
Also like this link with regard to Multiple Inheritance.
Link to some downloadable programming code … rename to main.cpp for use.

If this was interesting you may be interested in this too.

This entry was posted in eLearning, OOP, Tutorials, Xcode and tagged , , , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>