C++ Programming Tutorials
Posted on
April 20th, 2010 0 Comments
The ACM Student Magazine has a series of courses to teach C++ and java called “Objective Viewpoint”.
The tutorials touch on many aspects of object-orientation. The word object has surfaced in more ways than you can count. There are OOPLs (Object-Oriented Programming Languages) and OODBs (Object-Oriented Databases), OOA (object-oriented ...
Read More |
Make a Comment
Posted on
April 12th, 2010 0 Comments
Google Code University website provides tutorials and sample course content so CS students and educators can learn more about current computing technologies and paradigms. In particular, this content is Creative Commons licensed which makes it easy for CS educators to use in their own classes.
Today’s post is about C++ Operator Overloading Guidelines by...
Read More |
Make a Comment
Posted on
April 8th, 2010 0 Comments
Google Code University website provides tutorials and sample course content so CS students and educators can learn more about current computing technologies and paradigms. In particular, this content is Creative Commons licensed which makes it easy for CS educators to use in their own classes.
In the coming posts I will be adding few course links about C/C++...
Read More |
Make a Comment
Posted on
October 10th, 2008 6 Comments
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 part of the class flying bird which is again a part of the class bird.
One reason to use inheritance is that it allows...
Read More |
Make a Comment
Posted on
October 10th, 2008 6 Comments
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 part of the class flying bird which is again a part of the class bird.
One reason to use inheritance is that it allows...
Read More |
Make a Comment
Posted on
October 9th, 2008 2 Comments
By George Belotsky
Published on Linux DevCenter (http://www.linuxdevcenter.com/)
http://www.linuxdevcenter.com/pub/a/linux/2003/05/08/cpp_mm-1.html
Everyone knows that memory management is a difficult and dangerous chore in C++. This series of three articles will show you that the conventional wisdom is not true. When approached correctly, C++’s seemingly...
Read More |
Make a Comment
Posted on
September 25th, 2008 0 Comments
As we begin the study of C++ and object oriented programming, a few commentsare in order to help you get started. Since the field of object oriented programming is probably new to you, you will find that there is a significant amount of new terminology for you to grasp. This is true of any new endeavor and you should
be warned not to be intimidated by all of...
Read More |
Make a Comment
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