Difference between revisions of "CtoC++"

From SourceWiki
Jump to navigation Jump to search
m (Protected "CtoC++" [edit=sysop:move=sysop])
Line 1: Line 1:
 +
[[Category:Pragmatic Programming]]
 +
'''CtoC++: Upgrading to Object Oriented C'''
  
In the pipeline.
+
=Introduction=
 +
 
 +
<pre>
 +
svn co
 +
</pre>
 +
 
 +
=Cutting to the Chase: Classes and Encapsulation=
 +
 
 +
<pre>
 +
cd CtoC++/examples/example1
 +
make
 +
</pre>
 +
 
 +
We go a step further in bundling stuff together
 +
Weighing the Earth example
 +
public, private and interfaces
 +
classes as building blocks, glue code and lego bricks
 +
 
 +
=More on Methods=
 +
 
 +
Constructors, destructors, overloading
 +
 
 +
=Inheritance=
 +
 
 +
template classes, virtual etc.

Revision as of 16:55, 2 September 2009

CtoC++: Upgrading to Object Oriented C

Introduction

svn co 

Cutting to the Chase: Classes and Encapsulation

cd CtoC++/examples/example1
make

We go a step further in bundling stuff together Weighing the Earth example public, private and interfaces classes as building blocks, glue code and lego bricks

More on Methods

Constructors, destructors, overloading

Inheritance

template classes, virtual etc.