CSC 160 - Chapter 7 Quick Reference

Chapter 7 "Structures and Classes"

This chapter covers abstract data types, represented as structures and classes in C++.

General Terms

abstract data type primitive data type
structure members dot operator nested structures
union anonymous union
procedural programming object-oriented programming
class object access specifiers instance
inline function class specification file class implementation file
constructor destructor default constructor

C++ Syntax/Constructs

struct union class public
private :: (scope resolution operator)

Concepts

Important concepts covered include:


Disclaimer: The goal of this "cheat sheet" is to review the more important concepts in the chapter. The exclusion of any material in the chapter from this "cheat sheet" does not mean that you are not responsible for that material.