Skip to content

C++ Pocket Reference C++ Syntax and Fundamentals

Best in textbook rentals since 2012!

ISBN-10: 0596004966

ISBN-13: 9780596004965

Edition: 2003

Authors: Kyle Loudon, Jonathan Gennick

List price: $24.99
Blue ribbon 30 day, 100% satisfaction guarantee!
what's this?
Rush Rewards U
Members Receive:
Carrot Coin icon
XP icon
You have reached 400 XP and carrot coins. That is the daily max!

C++ is a complex language with many subtle facets. This is especially true when it comes to object-oriented and template programming. The "C++ Pocket Reference is a memory aid for C++ programmers, enabling them to quickly look up usage and syntax for unfamiliar and infrequently used aspects of the language. The book's small size makes it easy to carry about, ensuring that it will always be at-hand when needed. Programmers will also appreciate the book's brevity; as much information as possible has been crammed into its small pages. In the "C++ Pocket Reference, you will find: Information on C++ types and type conversions Syntax for C++ statements and preprocessor directives Help…    
Customers also bought

Book details

List price: $24.99
Copyright year: 2003
Publisher: O'Reilly Media, Incorporated
Publication date: 9/16/2008
Binding: Paperback
Pages: 144
Size: 4.25" wide x 6.97" long x 0.39" tall
Weight: 0.286
Language: English

Kyle Loudon is a software engineer at Matrix Semiconductor in Santa Clara, California, where he works with file systems and applications for memory chips. Prior to Matrix, Kyle developed platform software for embedded devices, including various wireless phones and the Apple iPod. He also led the graphical user interface group at Jeppesen Dataplan (now a part of Boeing), developed flight planning software, and created system software at IBM in the early 1990s. For the past several years, Kyle has taught object-oriented programming using C++ at the University of California, Santa Cruz Extension, and has worked with C++ since the beginning of its widespread use in 1990. Kyle is the author of…    

Introduction
Typographic Conventions
Acknowledgments
Compatibility with C
Program Structure
Startup
Termination
Header Files
Source Files
Preprocessor Directives
Preprocessor Macros
Fundamental Types
bool
char and wchar_t
short, int, long
float, double, long double
Compound Types
Enumerations
Arrays
Strings
Pointers
Pointers to Members
References
Class Types
Type Conversions and Definitions
Type Conversions
Type Definitions
Lexical Elements
Comments
Identifiers
Reserved Words
Literals
Operators
Expressions
Scope
Local Scope
Class Scope
Namespace Scope
File Scope
Other Scopes
Enclosing Scopes
Declarations
Declaring Variables
Declaring Functions
Storage Classes
Qualifiers
Statements
Expression Statements
Null Statements
Compound Statements
Iteration Statements
Selection Statements
Jump Statements
Namespaces
Using Declarations
Using Directives
Unnamed Namespaces
Classes, Structs, and Unions
Declaring Objects
Accessing Members
Declaring Data Members
Declaring Member Functions
Access Levels for Members
Friends
Constructors
Destructors
Nested Declarations
Forward Declarations
Structs
Unions
Inheritance
Constructors and Inheritance
Destructors and Inheritance
Virtual Member Functions
Abstract Base Classes
Access Levels for Inheritance
Multiple Inheritance
Virtual Base Classes
Templates
Template Classes
Template Functions
Overloading
Overloading Functions
Overloading Operators
Memory Management
Memory Allocation
Memory Reclamation
Casts and Runtime Type Information
C-Style Casts
Casts in C++
Runtime Type Information
Exception Handling
try
throw
catch
Exception Specifications
The C++ Standard Library
The std Namespace
C Standard Library Support
C++ Standard Header Files
I/O Streams
Index