Discover millions of ebooks, audiobooks, and so much more with a free trial

Only $11.99/month after trial. Cancel anytime.

C++: A Beginner's Guide, Second Edition
C++: A Beginner's Guide, Second Edition
C++: A Beginner's Guide, Second Edition
Ebook1,166 pages6 hours

C++: A Beginner's Guide, Second Edition

Rating: 0 out of 5 stars

()

Read preview

About this ebook

Essential skills made easy! Written by Herb Schildt, the world’s leading programming author, this step-by-step book is ideal for first-time programmers or those new to C++. The modular approach of this series, including sample projects and progress checks, makes it easy to learn to use C++ at your own pace.
LanguageEnglish
Release dateSep 1, 2012
ISBN9780071811729
C++: A Beginner's Guide, Second Edition

Related to C++

Related ebooks

Programming For You

View More

Related articles

Reviews for C++

Rating: 0 out of 5 stars
0 ratings

0 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    C++ - Herbert Schildt

    Copyright © 2004 by The McGraw-Hill Companies. All rights reserved. Except as permitted under the United States Copyright Act of 1976, no part of this publication may be reproduced or distributed in any form or by any means, or stored in a database or retrieval system, without the prior written permission of the publisher.

    ISBN: 978-0-07-181172-9

    MHID:       0-07-181172-9

    The material in this eBook also appears in the print version of this title: ISBN: 978-0-07-223215-8, MHID: 0-07-223215-3.

    All trademarks are trademarks of their respective owners. Rather than put a trademark symbol after every occurrence of a trademarked name, we use names in an editorial fashion only, and to the benefit of the trademark owner, with no intention of infringement of the trademark. Where such designations appear in this book, they have been printed with initial caps.

    McGraw-Hill eBooks are available at special quantity discounts to use as premiums and sales promotions, or for use in corporate training programs. To contact a representative please e-mail us at bulksales@mcgraw-hill.com.

    TERMS OF USE

    This is a copyrighted work and The McGraw-Hill Companies, Inc. (McGraw-Hill) and its licensors reserve all rights in and to the work. Use of this work is subject to these terms. Except as permitted under the Copyright Act of 1976 and the right to store and retrieve one copy of the work, you may not decompile, disassemble, reverse engineer, reproduce, modify, create derivative works based upon, transmit, distribute, disseminate, sell, publish or sublicense the work or any part of it without McGraw-Hill’s prior consent. You may use the work for your own noncommercial and personal use; any other use of the work is strictly prohibited. Your right to use the work may be terminated if you fail to comply with these terms.

    THE WORK IS PROVIDED AS IS. McGRAW-HILL AND ITS LICENSORS MAKE NO GUARANTEES OR WARRANTIES AS TO THE ACCURACY, ADEQUACY OR COMPLETENESS OF OR RESULTS TO BE OBTAINED FROM USING THE WORK, INCLUDING ANY INFORMATION THAT CAN BE ACCESSED THROUGH THE WORK VIA HYPERLINK OR OTHERWISE, AND EXPRESSLY DISCLAIM ANY WARRANTY, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. McGraw-Hill and its licensors do not warrant or guarantee that the functions contained in the work will meet your requirements or that its operation will be uninterrupted or error free. Neither McGraw-Hill nor its licensors shall be liable to you or anyone else for any inaccuracy, error or omission, regardless of cause, in the work or for any damages resulting therefrom. McGraw-Hill has no responsibility for the content of any information accessed through the work. Under no circumstances shall McGraw-Hill and/or its licensors be liable for any indirect, incidental, special, punitive, consequential or similar damages that result from the use of or inability to use the work, even if any of them has been advised of the possibility of such damages. This limitation of liability shall apply to any claim or cause whatsoever whether such claim or cause arises in contract, tort or otherwise.

    About the Author

    Herbert Schildt is the world’s leading programming author. He is an authority on the C, C++, Java, and C# languages, and is a master Windows programmer. His programming books have sold more than 3 million copies worldwide and have been translated into all major foreign languages. He is the author of numerous bestsellers, including C++: The Complete Reference, C#: The Complete Reference, Java 2: The Complete Reference, C#: A Beginner’s Guide, Java 2: A Beginner’s Guide, and C: The Complete Reference. Schildt holds a master’s degree in computer science from the University of Illinois. He can be reached at his consulting office at (217) 586-4683.

    Contents at a Glance

    1 C++ Fundamentals

    2 Introducing Data Types and Operators

    3 Program Control Statements

    4 Arrays, Strings, and Pointers

    5 Introducing Functions

    6 A Closer Look at Functions

    7 More Data Types and Operators

    8 Classes and Objects

    9 A Closer Look at Classes

    10 Inheritance, Virtual Functions, and Polymorphism

    11 The C++ I/O System

    12 Exceptions, Templates, and Other Advanced Topics

    A The Preprocessor

    B Working with an Older C++ Compiler

    Index

    Contents

    PREFACE

    1 C++ Fundamentals

    A Brief History of C++

    C: The Beginning of the Modern Age of Programming

    The Need for C++

    C++ Is Born

    The Evolution of C++

    How C++ Relates to Java and C#

    Object-Oriented Programming

    Encapsulation

    Polymorphism

    Inheritance

    A First Simple Program

    Entering the Program

    Compiling the Program

    Run the Program

    The First Sample Program Line by Line

    Handling Syntax Errors

    A Second Simple Program

    Using an Operator

    Reading Input from the Keyboard

    Some Output Options

    Another Data Type

    Project 1-1 Converting Feet to Meters

    Two Control Statements

    The if Statement

    The for Loop

    Using Blocks of Code

    Semicolons and Positioning

    Indentation Practices

    Project 1-2 Generating a Table of Feet to Meter Conversions

    Introducing Functions

    The C++ Libraries

    The C++ Keywords

    Identifiers

    Module 1 Mastery Check

    2 Introducing Data Types and Operators

    Why Data Types Are Important

    The C++ Data Types

    Integers

    Characters

    Floating-Point Types

    The bool Type

    void

    Project 2-1 Talking to Mars

    Literals

    Hexadecimal and Octal Literals

    String Literals

    Character Escape Sequences

    A Closer Look at Variables

    Initializing a Variable

    Dynamic Initialization

    Operators

    Arithmetic Operators

    Increment and Decrement

    Relational and Logical Operators

    Project 2-2 Construct an XOR Logical Operation

    The Assignment Operator

    Compound Assignments

    Type Conversion in Assignments

    Expressions

    Type Conversion in Expressions

    Casts

    Spacing and Parentheses

    Project 2-3 Compute the Regular Payments on a Loan

    Module 2 Mastery Check

    3 Program Control Statements

    The if Statement

    The Conditional Expression

    Nested ifs

    The if-else-if Ladder

    The switch Statement

    Nested switch Statements

    Project 3-1 Start Building a C++ Help System

    The for Loop

    Some Variations on the for Loop

    Missing Pieces

    The Infinite for Loop

    Loops with No Body

    Declaring Loop Control Variables Inside the for Loop

    The while Loop

    The do-while Loop

    Project 3-2 Improve the C++ Help System

    Using break to Exit a Loop

    Using continue

    Project 3-3 Finish the C++ Help System

    Nested Loops

    Using the goto Statement

    Module 3 Mastery Check

    4 Arrays, Strings, and Pointers

    One-Dimensional Arrays

    No Bounds Checking

    Two-Dimensional Arrays

    Multidimensional Arrays

    Project 4-1 Sorting an Array

    Strings

    String Fundamentals

    Reading a String from the Keyboard

    Some String Library Functions

    strcpy

    strcat

    strcmp

    strlen

    A String Function Example

    Using the Null Terminator

    Array Initialization

    Unsized Array Initializations

    Arrays of Strings

    Pointers

    What Are Pointers?

    The Pointer Operators

    The Base Type of a Pointer Is Important

    Assigning Values Through a Pointer

    Pointer Expressions

    Pointer Arithmetic

    Pointer Comparisons

    Pointers and Arrays

    Indexing a Pointer

    String Constants

    Project 4-2 Reversing a String in Place

    Arrays of Pointers

    The Null Pointer Convention

    Multiple Indirection

    Module 4 Mastery Check

    5 Introducing Functions

    Function Fundamentals

    The General Form of a Function

    Creating a Function

    Using Arguments

    Using return

    Returning Values

    Using Functions in Expressions

    Scope Rules

    Local Scope

    Global Scope

    Passing Pointers and Arrays to Functions

    Passing a Pointer

    Passing an Array

    Passing Strings

    Returning Pointers

    The main( ) Function

    Pass Command-Line Arguments to main( )

    Passing Numeric Command-Line Arguments

    Function Prototypes

    Headers Contain Prototypes

    Recursion

    Project 5-1 The Quicksort

    Module 5 Mastery Check

    6 A Closer Look at Functions

    Two Approaches to Argument Passing

    How C++ Passes Arguments

    Using a Pointer to Create a Call-by-Reference

    Reference Parameters

    Returning References

    Independent References

    A Few Restrictions When Using References

    Function Overloading

    Automatic Type Conversions and Overloading

    Project 6-1 Create Overloaded Output Functions

    Default Function Arguments

    Default Arguments Versus Overloading

    Using Default Arguments Correctly

    Function Overloading and Ambiguity

    Module 6 Mastery Check

    7 More Data Types and Operators

    The const and volatile Qualifiers

    const

    volatile

    Storage Class Specifiers

    auto

    extern

    static Variables

    register Variables

    Enumerations

    typedef

    Bitwise Operators

    AND, OR, XOR, and NOT

    The Shift Operators

    Project 7-1 Create Bitwise Rotation Functions

    The ? Operator

    The Comma Operator

    Multiple Assignments

    Compound Assignment

    Using sizeof

    Precedence Summary

    Module 7 Mastery Check

    8 Classes and Objects

    Class Fundamentals

    The General Form of a Class

    Defining a Class and Creating Objects

    Adding Member Functions to a Class

    Project 8-1 Creating a Help Class

    Constructors and Destructors

    Parameterized Constructors

    Adding a Constructor to the Vehicle Class

    An Initialization Alternative

    Inline Functions

    Creating Inline Functions Inside a Class

    Project 8-2 Creating a Queue Class

    Arrays of Objects

    Initializing Object Arrays

    Pointers to Objects

    Object References

    Module 8 Mastery Check

    9 A Closer Look at Classes

    Overloading Constructors

    Assigning Objects

    Passing Objects to Functions

    Constructors, Destructors, and Passing Objects

    Passing Objects by Reference

    A Potential Problem When Passing Objects

    Returning Objects

    Creating and Using a Copy Constructor

    Friend Functions

    Structures and Unions

    Structures

    Unions

    The this Keyword

    Operator Overloading

    Operator Overloading Using Member Functions

    Order Matters

    Using Member Functions to Overload Unary Operators

    Nonmember Operator Functions

    Using a Friend to Overload a Unary Operator

    Operator Overloading Tips and Restrictions

    Project 9-1 Creating a Set Class

    Module 9 Mastery Check

    10 Inheritance, Virtual Functions, and Polymorphism

    Inheritance Fundamentals

    Member Access and Inheritance

    Base Class Access Control

    Using protected Members

    Constructors and Inheritance

    Calling Base Class Constructors

    Project 10-1 Extending the Vehicle Class

    Creating a Multilevel Hierarchy

    Inheriting Multiple Base Classes

    When Constructor and Destructor Functions Are Executed

    Pointers to Derived Types

    References to Derived Types

    Virtual Functions and Polymorphism

    Virtual Function Fundamentals

    Virtual Functions Are Inherited

    Why Virtual Functions?

    Applying Virtual Functions

    Pure Virtual Functions and Abstract Classes

    Module 10 Mastery Check

    11 The C++ I/O System

    Old vs. Modern C++ I/O

    C++ Streams

    The C++ Predefined Streams

    The C++ Stream Classes

    Overloading the I/O Operators

    Creating Inserters

    Using Friend Functions to Overload Inserters

    Overloading Extractors

    Formatted I/O

    Formatting with the ios Member Functions

    Using I/O Manipulators

    Creating Your Own Manipulator Functions

    File I/O

    Opening and Closing a File

    Reading and Writing Text Files

    Unformatted and Binary I/O

    Reading and Writing Blocks of Data

    More I/O Functions

    More Versions of get( )

    getline( )

    Detecting EOF

    peek( ) and putback( )

    flush( )

    Project 11-1 A File Comparison Utility

    Random Access

    Checking I/O Status

    Module 11 Mastery Check

    12 Exceptions, Templates, and Other Advanced Topics

    Exception Handling

    Exception Handling Fundamentals

    Using Multiple catch Statements

    Catching All Exceptions

    Specifying Exceptions Thrown by a Function

    Rethrowing an Exception

    Templates

    Generic Functions

    A Function with Two Generic Types

    Explicitly Overloading a Generic Function

    Generic Classes

    Explicit Class Specializations

    Project 12-1 Creating a Generic Queue Class

    Dynamic Allocation

    Initializing Allocated Memory

    Allocating Arrays

    Allocating Objects

    Namespaces

    Namespace Fundamentals

    using

    Unnamed Namespaces

    The std Namespace

    static Class Members

    static Member Variables

    static Member Functions

    Runtime Type Identification (RTTI)

    The Casting Operators

    dynamic_cast

    const_cast

    static_cast

    reinterpret_cast

    What Next?

    Module 12 Mastery Check

    A The Preprocessor

    #define

    Function-Like Macros

    #error

    #include

    Conditional Compilation Directives

    #if, #else, #elif, and #endif

    #ifdef and #ifndef

    #undef

    Using defined

    #line

    #pragma

    The # and ## Preprocessor Operators

    Predefined Macro Names

    B Working with an Older C++ Compiler

    Two Simple Changes

    Index

    Preface

    C++ is the preeminent language for the development of high-performance software. It is also the language that defines the modern syntax and style that have influenced all subsequent languages. For example, both Java and C# are descended from C++. Moreover, C++ is the universal language of programming, in which nearly all professional programmers have at least passing competency. By learning C++, you will be establishing a solid foundation that will enable you to pursue any aspect of programming today.

    The purpose of this book is to teach you the fundamentals of C++ programming. It uses a step-by-step approach complete with numerous examples, self-tests, and projects. It assumes no previous programming experience. The book starts with the basics, such as how to compile and run a C++ program. It then discusses the keywords, features, and constructs that comprise the C++ language. By the time you finish, you will have a firm grasp of the essentials of C++ programming.

    It is important to state at the outset that this book is just a starting point. C++ is a large, sophisticated language, and successful C++ programming involves more than just the keywords, operators, and syntax that define the language. It also involves the use of an extensive set of class and function libraries that aid in the development of programs. Although several of the library elements are discussed in this book, because of space limitations, most are not. To be a top-notch C++ programmer implies mastery of C++ libraries, too. After completing this book, you will have the knowledge to explore the libraries and all other aspects of C++.

    How This Book Is Organized

    This book presents an evenly paced tutorial in which each section builds upon the previous one. It contains 12 modules, each discussing an aspect of C++. This book is unique because it includes several special elements that reinforce what you are learning.

    Critical Skills

    Each module begins with a set of critical skills that tell you what you will be learning. The location of each skill is indicated within the module.

    Mastery Check

    Each module concludes with a Mastery Check, a self-test that lets you test your knowledge. The answers are found on the Web at this book’s page at www.osborne.com.

    Progress Checks

    At the end of each major section is a Progress Check that tests your understanding of the key points that were presented. The answers to these questions are at the bottom of the page.

    Ask the Expert

    Sprinkled throughout the book are special Ask the Expert boxes. These contain additional information or interesting commentary about a topic. They use a Question/Answer format.

    Projects

    Each module contains one or more projects that show you how to apply what you are learning. These are real-world examples that you can use as starting points for your own programs.

    No Previous Programming Experience Required

    This book assumes no previous programming experience. Thus, if you have never programmed before, you can use this book. Of course, in this day and age, most readers will have at least a little prior programming experience. For many, this previous experience will be in Java or C#. As you will learn, C++ is the parent of both of these languages. Therefore, if you already know Java or C#, then you will be able to learn C++ easily.

    Required Software

    To compile and run the programs in this book, you will need a modern C++ compiler, such as a recent version of Microsoft’s Visual C++ or Borland’s C++ Builder.

    Don’t Forget: Code on the Web

    Remember, the source code for all of the examples and projects in this book is available free-of-charge on the Web at www.osborne.com.

    For Further Study

    C++: A Beginner’s Guide is your gateway to the Herb Schildt series of programming books. Here are some others that you will find of interest.

    To learn more about C++, try

    C++: The Complete Reference

    C++ From the Ground Up

    Teach Yourself C++

    STL Programming From the Ground Up

    C++ Programmer’s Reference

    To learn about Java programming, we recommend the following:

    Java 2: A Beginner’s Guide

    Java 2: The Complete Reference

    Java 2 Programmer’s Reference

    The Art of Java

    To learn about C#, Herb offers these books:

    C#: A Beginner’s Guide

    C#: The Complete Reference

    To learn about Windows programming, we suggest the following Schildt books:

    Windows 98 Programming From the Ground Up

    Windows 2000 Programming From the Ground Up

    MFC Programming From the Ground Up

    The Windows Programming Annotated Archives

    If you want to learn about the C language, which is the foundation of all modern programming, then the following titles will be of interest:

    C: The Complete Reference

    Teach Yourself C

    When you need solid answers, fast, turn to Herbert Schildt, the recognized authority on programming.

    Module 1

    C++ Fundamentals

    CRITICAL SKILLS

    1.1 Understand the history behind C++

    1.2 Know how C++ relates to C, C#, and Java

    1.3 Learn the three principles of object-oriented programming

    1.4 Create, compile, and run C++ programs

    1.5 Use variables

    1.6 Use operators

    1.7 Read input from the keyboard

    1.8 Work with the if and for statements

    1.9 Apply code blocks

    1.10 Use functions

    1.11 Know the C++ keywords

    1.12 Understand the rules for C++ identifiers

    If there is one language that defines the essence of programming today, it is C++. It is the preeminent language for the development of high-performance software. Its syntax has become the standard for professional programming languages, and its design philosophy reverberates throughout computing. C++ is also the language from which both Java and C# are derived. Simply stated, to be a professional programmer implies competency in C++. It is the gateway to all of modern programming.

    The purpose of this module is to introduce C++, including its history, its design philosophy, and several of its most important features. By far, the hardest thing about learning a programming language is the fact that no element exists in isolation. Instead, the components of the language work together. This interrelatedness makes it difficult to discuss one aspect of C++ without involving others. To help overcome this problem, this module provides a brief overview of several C++ features, including the general form of a C++ program, some basic control statements, and operators. It does not go into too many details, but rather concentrates on the general concepts common to any C++ program.

    CRITICAL SKILL 1.1 A Brief History of C++

    The history of C++ begins with C. The reason for this is easy to understand: C++ is built upon the foundation of C. Thus, C++ is a superset of C. C++ expanded and enhanced the C language to support object-oriented programming (which is described later in this module). C++ also added several other improvements to the C language, including an extended set of library routines. However, much of the spirit and flavor of C++ is directly inherited from C. Therefore, to fully understand and appreciate C++, you need to understand the how and why behind C.

    C: The Beginning of the Modern Age of Programming

    The invention of C defines the beginning of the modern age of programming. Its impact should not be underestimated because it fundamentally changed the way programming was approached and thought about. Its design philosophy and syntax have influenced every major language since. C was one of the major, revolutionary forces in computing.

    C was invented and first implemented by Dennis Ritchie on a DEC PDP-11 using the UNIX operating system. C is the result of a development process that started with an older language called BCPL. BCPL was developed by Martin Richards. BCPL influenced a language called B, which was invented by Ken Thompson and which led to the development of C in the 1970s.

    Prior to the invention of C, computer languages were generally designed either as academic exercises or by bureaucratic committees. C was different. It was designed, implemented, and developed by real, working programmers, reflecting the way they approached the job of programming. Its features were honed, tested, thought about, and rethought by the people who actually used the language. As a result, C attracted many proponents and quickly became the language of choice of programmers around the world.

    C grew out of the structured programming revolution of the 1960s. Prior to structured programming, large programs were difficult to write because the program logic tended to degenerate into what is known as spaghetti code, a tangled mass of jumps, calls, and returns that is difficult to follow. Structured languages addressed this problem by adding well-defined control statements, subroutines with local variables, and other improvements. Using structured languages, it became possible to write moderately large programs.

    Although there were other structured languages at the time, such as Pascal, C was the first to successfully combine power, elegance, and expressiveness. Its terse, yet easy-to-use syntax coupled with its philosophy that the programmer (not the language) was in charge quickly won many converts. It can be a bit hard to understand from today’s perspective, but C was a breath of fresh air that programmers had long awaited. As a result, C became the most widely used structured programming language of the 1980s.

    The Need for C++

    Given the preceding discussion, you might be wondering why C++ was invented. Since C was a successful computer programming language, why was there a need for something else? The answer is complexity. Throughout the history of programming, the increasing complexity of programs has driven the need for better ways to manage that complexity. C++ is a response to that need. To better understand the correlation between increasing program complexity and computer language development, consider the following.

    Approaches to programming have changed dramatically since the invention of the computer. For example, when computers were first invented, programming was done by using the computer’s front panel to toggle in the binary machine instructions. As long as programs were just a few hundred instructions long, this approach worked. As programs grew, assembly language was invented so that programmers could deal with larger, increasingly complex programs by using symbolic representations of the machine instructions. As programs continued to grow, high-level languages were developed to give programmers more tools with which to handle the complexity.

    The first widely used computer language was, of course, FORTRAN. While FORTRAN was a very impressive first step, it is hardly a language that encourages clear, easy-to-understand programs. The 1960s gave birth to structured programming, which is the method of programming encouraged by languages such as C. With structured languages it was, for the first time, possible to write moderately complex programs fairly easily. However, even with structured programming methods, once a project reaches a certain size, its complexity exceeds what a programmer can manage. By the late 1970s, many projects were near or at this point.

    In response to this problem, a new way to program began to emerge: object-oriented programming (OOP). Using OOP, a programmer could handle larger, more complex programs. The trouble was that C did not support object-oriented programming. The desire for an object-oriented version of C ultimately led to the creation of C++.

    In the final analysis, although C is one of the most liked and widely used professional programming languages in the world, there comes a time when its ability to handle complexity is exceeded. Once a program reaches a certain size, it becomes so complex that it is difficult to grasp as a totality. The purpose of C++ is to allow this barrier to be broken and to help the programmer comprehend and manage larger, more complex programs.

    C++ Is Born

    C++ was invented by Bjarne Stroustrup in 1979, at Bell Laboratories in Murray Hill, New Jersey. He initially called the new language C with Classes. However, in 1983 the name was changed to C++.

    Stroustrup built C++ on the foundation of C, including all of C’s features, attributes, and benefits. He also adhered to C’s underlying philosophy that the programmer, not the language, is in charge. At this point, it is critical to understand that Stroustrup did not create an entirely new programming language. Instead, he enhanced an already highly successful language.

    Most of the features that Stroustrup added to C were designed to support object-oriented programming. In essence, C++ is the object-oriented version of C. By building upon the foundation of C, Stroustrup provided a smooth migration path to OOP. Instead of having to learn an entirely new language, a C programmer needed to learn only a few new features before reaping the benefits of the object-oriented methodology.

    When creating C++, Stroustrup knew that it was important to maintain the original spirit of C, including its efficiency, flexibility, and philosophy, while at the same time adding support for object-oriented programming. Happily, his goal was accomplished. C++ still provides the programmer with the freedom and control of C, coupled with the power of objects.

    Although C++ was initially designed to aid in the management of very large programs, it is in no way limited to this use. In fact, the object-oriented attributes of C++ can be effectively applied to virtually any programming task. It is not uncommon to see C++ used for projects such as editors, databases, personal file systems, networking utilities, and communication programs. Because C++ shares C’s efficiency, much high-performance systems software is constructed using C++. Also, C++ is frequently the language of choice for Windows programming.

    The Evolution of C++

    Since C++ was first invented, it has undergone three major revisions, with each revision adding to and altering the language. The first revision was in 1985 and the second in 1990. The third occurred during the C++ standardization process. Several years ago, work began on a standard for C++. Toward that end, a joint ANSI (American National Standards Institute) and ISO (International Standards Organization) standardization committee was formed. The first draft of the proposed standard was created on January 25, 1994. In that draft, the ANSI/ISO C++ committee (of which I was a member) kept the features first defined by Stroustrup and added some new ones. But, in general, this initial draft reflected the state of C++ at the time.

    Soon after the completion of the first draft of the C++ standard, an event occurred that caused the standard to be greatly expanded: the creation of the Standard Template Library (STL) by Alexander Stepanov. The STL is a set of generic routines that you can use to manipulate data. It is both powerful and elegant. But it is also quite large. Subsequent to the first draft, the committee voted to include the STL in the specification for C++. The addition of the STL expanded the scope of C++ well beyond its original definition. While important, the inclusion of the STL, among other things, slowed the standardization of C++.

    It is fair to say that the standardization of C++ took far longer than anyone had expected. In the process, many new features were added to the language, and many small changes were made. In fact, the version of C++ defined by the ANSI/ISO C++ committee is much larger and more complex than Stroustrup’s original design. The final draft was passed out of committee on November 14, 1997, and an ANSI/ISO standard for C++ became a reality in 1998. This is the specification for C++ that is usually referred to as Standard C++.

    The material in this book describes Standard C++. This is the version of C++ supported by all mainstream C++ compilers, including Microsoft’s Visual C++ and Borland’s C++ Builder. Thus, the code and information in this book are fully portable.

    CRITICAL SKILL 1.2 How C++ Relates to Java and C#

    In addition to C++, there are two other important, modern programming languages: Java and C#. Java was developed by Sun Microsystems, and C# was created by Microsoft. Because there is sometimes confusion about how these two languages relate to C++, a brief discussion of their relationship is in order.

    C++ is the parent for both Java and C#. Although both Java and C# added, removed, and modified various features, in total the syntax for these three languages is nearly identical. Furthermore, the object model used by C++ is similar to the ones used by Java and C#. Finally, the overall look and feel of these languages is very similar. This means that once you know C++, you can easily learn Java or C#. The opposite is also true. If you know Java or C#, learning C++ is easy. This is one reason that Java and C# share C++’s syntax and object model; it facilitated their rapid adoption by legions of experienced C++ programmers.

    The main difference between C++, Java, and C# is the type of computing environment for which each is designed. C++ was created to produce high-performance programs for a specific type of CPU and operating system. For example, if you want to write a program that runs on an Intel Pentium under the Windows operating system, then C++ is the best language to use.

    Ask the Expert

    Q: How do Java and C# create cross-platform, portable programs, and why can’t C++ do the same?

    A: Java and C# can create cross-platform, portable programs and C++ can’t because of the type of object code produced by the compiler. In the case of C++, the output from the compiler is machine code that is directly executed by the CPU. Thus, it is tied to a specific CPU and operating system. If you want to run a C++ program on a different system, you need to recompile it into machine code specifically targeted for that environment. To create a C++ program that would run in a variety of environments, several different executable versions of the program are needed.

    Java and C# achieve portability by compiling a program into a pseudocode, intermediate language. In the case of Java, this intermediate language is called bytecode. For C#, it is called Microsoft Intermediate Language (MSIL). In both cases, this pseudocode is executed by a runtime system. For Java, this runtime system is called the Java Virtual Machine (JVM). For C#, it is the Common Language Runtime (CLR). Therefore, a Java program can run in any environment for which a JVM is available, and a C# program can run in any environment in which the CLR is implemented.

    Since the Java and C# runtime systems stand between a program and the CPU, Java and C# programs incur an overhead that is not present in the execution of a C++ program. This is why C++ programs usually run faster than the equivalent programs written in Java or C#.

    Java and C# were developed in response to the unique programming needs of the online environment of the Internet. (C# was also designed to simplify the creation of software components.) The Internet is connected to many different types of CPUs and operating systems. Thus, the ability to produce cross-platform, portable programs became an overriding concern.

    The first language to address this need was Java. Using Java, it is possible to write a program that runs in a wide variety of environments. Thus, a Java program can move about freely on the Internet. However, the price you pay for portability is efficiency, and Java programs execute more slowly than do C++ programs. The same is true for C#. In the final analysis, if you want to create high-performance software, use C++. If you need to create highly portable software, use Java or C#.

    One final point: Remember that C++, Java, and C# are designed to solve different sets of problems. It is not an issue of which language is best in and of itself. Rather, it is a question of which language is right for the job at hand.

    Progress Check

    1. From what language is C++ derived?

    2. What was the main factor that drove the creation of C++?

    3. C++ is the parent of Java and C#. True or false?

    CRITICAL SKILL 1.3 Object-Oriented Programming

    Central to C++ is object-oriented programming (OOP). As just explained, OOP was the impetus for the creation of C++. Because of this, it is useful to understand OOP’s basic principles before you write even a simple C++ program.

    Object-oriented programming took the best ideas of structured programming and combined them with several new concepts. The result was a different and better way of organizing a program. In the most general sense, a program can be organized in one of two ways: around its code (what is happening) or around its data (who is being affected). Using only structured programming techniques, programs are typically organized around code. This approach can be thought of as code acting on data.

    Object-oriented programs work the other way around. They are organized around data, with the key principle being data controlling access to code. In an object-oriented language, you define the data and the routines that are permitted to act on that data. Thus, a data type defines precisely what sort of operations can be applied to that data.

    To support the principles of object-oriented programming, all OOP languages, including C++, have three traits in common: encapsulation, polymorphism, and inheritance. Let’s examine each.

    Encapsulation

    Encapsulation is a programming mechanism that binds together code and the data it manipulates, and that keeps both safe from outside interference and misuse. In an object-oriented language, code and data can be bound together in such a way that a self-contained black box is created. Within the box are all necessary data and code. When code and data are linked together in this fashion, an object is created. In other words, an object is the device that supports encapsulation.

    Ask the Expert

    Q: I have heard the term method applied to a subroutine. Is a method the same as a function?

    A: In general, the answer is yes. The term method was popularized by Java. What a C++ programmer calls a function, a Java programmer calls a method. C# programmers also use the term method. Because it is becoming so widely used, sometimes the term method is also used when referring to a C++ function.

    Within an object, code or data or both may be private to that object or public. Private code or data is known to and accessible by only another part of the object. That is, private code or data cannot be accessed by a piece of the program that exists outside the object. When code or data is public, other parts of your program can access it even though it is defined within an object. Typically, the public parts of an object are used to provide a controlled interface to the private elements of the object.

    C++’s basic unit of encapsulation is the class. A class defines the form of an object. It specifies both the data and the code that will operate on that data. C++ uses a class specification to construct objects. Objects are instances of a class. Thus, a class is essentially a set of plans that specifies how to build an object.

    The code and data that constitute a class are called members of the class. Specifically, member variables, also called instance variables, are the data defined by the class. Member functions are the code that operates on

    Enjoying the preview?
    Page 1 of 1