CPSC 427a: Object-Oriented Programming

Michael J. Fischer

Lecture 2
September 7, 2010

subsection in toc subsection in toc subsection in toc

C++ Overview

General properties of C++

C/C++ comparison]Comparison of C and C++

C++ Extends C

Some Extensions in C++

Tools

Low-level

Eclipse IDE (integrated development environment)

Generic Insertion Sort

Two implementations of simple insertion sort:

  1. C version: Written in object-oriented style to the extent possible in C.
  2. C++ version: Similar code but with C++ support

C version

See code demo.