Objects, types, and values
Bjarne Stroustrup
www.stroustrup.com/Programming
,Abstract
• Most programming tasks involve manipulating data.
Today, we will:
• describe how to input and output data
• present the notion of a variable for holding data
• introduce the central notions of “Type” and “Type Safety”
Stroustrup/Programming 2
, Overview
• Strings and string I/O
• Integers and integer I/O
• Types and objects
• Type safety
Stroustrup/Programming 3