23%
Sams Teach Yourself C++ in One Hour a Day

Sams Teach Yourself C++ in One Hour a Day

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist

About the Book

Learn C++ in Just One Hour a Day Completely updated for the C++11 standard, Sams Teach Yourself C++ in One Hour a Day presents the language from a practical point of view, helping you learn how to use C++11 to create faster, simpler, and more efficient C++ applications. Master the fundamentals of C++ and object-oriented programming Understand how C++11 features help you write compact and efficient code using concepts such as lambda expressions, move constructors, and assignment operators Learn the Standard Template Library, including containers and algorithms used in most real-world C++ applications Test your knowledge and expertise using exercises at the end of every lesson Learn on your own time, at your own pace: No previous programming experience required Learn C++11, object-oriented programming, and analysis Write fast and powerful C++ programs, compile the source code with a gcc compiler, and create executable files Use the Standard Template Library’s (STL) algorithms and containers to write feature-rich yet stable C++ applications Develop sophisticated programming techniques using lambda expressions, smart pointers, and move constructors Learn to expand your program’s power with inheritance and polymorphism Master the features of C++ by learning from programming experts Learn C++11 features that allow you to program compact and high-performance C++ applications TABLE OF CONTENTS PART I: THE BASICS LESSON 1: Getting Started with C++11 LESSON 2: The Anatomy of a C++ Program LESSON 3: Using Variables, Declaring Constants LESSON 4: Managing Arrays and Strings LESSON 5: Working with Expressions, Statements, and Operators LESSON 6: Controlling Program Flow LESSON 7: Organizing Code with Functions LESSON 8: Pointers and References Explained PART II: FUNDAMENTALS OF OBJECT-ORIENTED C++ PROGRAMMING LESSON 9: Classes and Objects LESSON 10: Implementing Inheritance LESSON 11: Polymorphism LESSON 12: Operator Types and Operator Overloading LESSON 13: Casting Operators LESSON 14: An Introduction to Macros and Templates PART III: LEARNING THE STANDARD TEMPLATE LIBRARY (STL) LESSON 15: An Introduction to the Standard Template Library LESSON 16: The STL String Class LESSON 17: STL Dynamic Array Classes LESSON 18: STL list and forward_list LESSON 19: STL Set Classes LESSON 20: STL Map Classes PART IV: MORE STL LESSON 21: Understanding Function Objects LESSON 22: C++11 Lambda Expressions LESSON 23: STL Algorithms LESSON 24: Adaptive Containers: Stack and Queue LESSON 25: Working with Bit Flags Using STL PART V: ADVANCED C++ CONCEPTS LESSON 26: Understanding Smart Pointers LESSON 27: Using Streams for Input and Output LESSON 28: Exception Handling LESSON 29: Going Forward APPENDIXES A: Working with Numbers: Binary and Hexadecimal B: C++ Keywords C: Operator Precedence D: Answers E: ASCII Codes

Table of Contents:
Sams Teach Yourself C++ in One Hour a Day Covers C++11 PART I: THE BASICS LESSON 1: Getting Started A Brief History of C++ Programming a C++ Application What's New in C++11 LESSON 2: The Anatomy of a C++ Program Part of the Hello World Program The Concept of Namespaces Comments in C++ Code Functions in C++ Basic Input Using std::cin and Output Using std::cout LESSON 3: Using Variables, Declaring Constants What Is a Variable? Common Compiler-Supported C++ Variable Types Determining the Size of a Variable Using sizeof Using typedef to Substitute a Variable's Type What Is a Constant? Naming Variables and Constants Keywords You Cannot Use as Variable or Constant Names LESSON 4: Managing Arrays and Strings What Is an Array? Multidimensional Arrays Dynamic Arrays C-style Strings C++ Strings: Using std::string LESSON 5: Working with Expressions, Statements, and Operators Statements Compound Statements or Blocks Using Operators LESSON 6: Controlling Program Flow Conditional Execution Using if … else Getting Code to Execute in Loops Modifying Loop Behavior Using continue and break Programming Nested Loops LESSON 7: Organizing Code with Functions The Need for Functions Using Functions to Work with Different Forms of Data How Function Calls Are Handled by the Microprocessor LESSON 8: Pointers and References Explained What Is a Pointer? Dynamic Memory Allocation Common Programming Mistakes When Using Pointers Pointer Programming Best-Practices What Is a Reference? PART II: FUNDAMENTALS OF OBJECT-ORIENTED C++ PROGRAMMING LESSON 9: Classes and Objects The Concept of Classes and Objects Keywords public and private Constructors Destructor Copy Constructor Different Uses of Constructors and Destructor this Pointer sizeof() a Class How struct Differs from class Declaring a friend of a class LESSON 10: Implementing Inheritance Basics of Inheritance Private Inheritance Protected Inheritance The Problem of Slicing Multiple Inheritance LESSON 11: Polymorphism Basics of Polymorphism Using virtual Inheritance to Solve the Diamond Problem Virtual Copy Constructors? LESSON 12: Operator Types and Operator Overloading What Are Operators in C++? Unary Operators Binary Operators Function Operator () Operators That Cannot Be Overloaded LESSON 13: Casting Operators The Need for Casting Why C-Style Casts Are Not Popular with Some C++ Programmers The C++ Casting Operators Problems with the C++ Casting Operators LESSON 14: An Introduction to Macros and Templates The Preprocessor and the Compiler Using #define Macros to Define Constants Using #define To Write Macro Functions An Introduction to Templates PART III: LEARNING THE STANDARD TEMPLATE LIBRARY (STL) LESSON 15: An Introduction to the Standard Template Library STL Containers STL Iterators STL Algorithms The Interaction Between Containers and Algorithms Using Iterators STL String Classes LESSON 16: The STL String Class The Need for String Manipulation Classes Working with the STL String Class LESSON 17: STL Dynamic Array Classes The Characteristics of std::vector Typical Vector Operations Understanding the Concepts of Size and Capacity The STL deque Class LESSON 18: STL list and forward_list The Characteristics of a std::list Basic list Operations Reversing and Sorting Elements in a List LESSON 19: STL Set Classes An Introduction to STL Set Classes Basic STL set and multiset Operations Pros and Cons of Using STL set and multiset LESSON 20: STL Map Classes An Introduction to STL Map Classes Basic std::map and std::multimap Operations Supplying a Custom Sort Predicate PART IV: MORE STL LESSON 21: Understanding Function Objects The Concept of Function Objects and Predicates Typical Applications of Function Objects LESSON 22: C++11 Lambda Expressions What Is a Lambda Expression? How to Define a Lambda Expression Lambda Expression for a Unary Function Lambda Expression for a Unary Predicate Lambda Expression with State via Capture Lists The Generic Syntax of Lambda Expressions Lambda Expression for a Binary Function Lambda Expression for a Binary Predicate LESSON 23: STL Algorithms What Are STL Algorithms? Classification of STL Algorithms Usage of STL Algorithms LESSON 24: Adaptive Containers: Stack and Queue The Behavioral Characteristics of Stacks and Queues Using the STL stack Class Using the STL queue Class Using the STL Priority Queue LESSON 25: Working with Bit Flags Using STL The bitset Class Using std::bitset and Its Members The vector PART V: ADVANCED C++ CONCEPTS LESSON 26: Understanding Smart Pointers What Are Smart Pointers? How Are Smart Pointers Implemented? Types of Smart Pointers Popular Smart Pointer Libraries LESSON 27: Using Streams for Input and Output Concept of Streams Important C++ Stream Classes and Objects Using std::cout for Writing Formatted Data to Console Using std::cin for Input Using std::fstream for File Handling Using std::stringstream for String Conversions LESSON 28: Exception Handling What Is an Exception? What Causes Exceptions? Implementing Exception Safety via try and catch How Exception Handling Works LESSON 29: Going Forward What's Different in Today's Processors? How to Better Use Multiple Cores Writing Great C++ Code Learning C++ Doesn't Stop Here! APPENDIXES A: Working with Numbers: Binary and Hexadecimal B: C++ Keywords C: Operator Precedence D: Answers E: ASCII Codes


Best Sellers


Product Details
  • ISBN-13: 9780672335679
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Sams Publishing
  • Depth: 51
  • Height: 233 mm
  • No of Pages: 768
  • Series Title: Sams Teach Yourself...
  • Weight: 1184 gr
  • ISBN-10: 0672335670
  • Publisher Date: 24 May 2012
  • Binding: Paperback
  • Edition: 7
  • Language: English
  • Returnable: N
  • Spine Width: 39 mm
  • Width: 181 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
Sams Teach Yourself C++ in One Hour a Day
Pearson Education (US) -
Sams Teach Yourself C++ in One Hour a Day
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Sams Teach Yourself C++ in One Hour a Day

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA