CIS 3142 Advice — Chapter 6

CISC 3142
Programming Paradigms in C++
Part II: Basic Facilities
Chapter 6 — Types and Declarations

Reading from the Text

Chapter 6 — Types and Declarations

Overview

A more detailed look at the language's types and declaration structure

Topics

ISO Standard

Standardized definition of the language. Part of the standard is a specification of the behavior of various features or categories of code. In particular, the standard states whether something is portable and/or can be relied upon for a specific result.

Here are the various categories of behavior:

Types

Declarations

Initialization

No initializer?

Objects and Values

Type alias

Advice