Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Advanced C++
Advanced C++

Advanced C++: Master the technique of confidently writing robust C++ code

Arrow left icon
Profile Icon Gazihan Alankus Profile Icon Brian Price Profile Icon Vivek Nagarajan Profile Icon Rakesh Mane Profile Icon Olena Lizina +1 more Show less
Arrow right icon
£16.99 per month
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3 (2 Ratings)
Paperback Oct 2019 762 pages 1st Edition
eBook
£17.99 £25.99
Paperback
£32.99
Subscription
Free Trial
Renews at £16.99p/m
Arrow left icon
Profile Icon Gazihan Alankus Profile Icon Brian Price Profile Icon Vivek Nagarajan Profile Icon Rakesh Mane Profile Icon Olena Lizina +1 more Show less
Arrow right icon
£16.99 per month
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3 (2 Ratings)
Paperback Oct 2019 762 pages 1st Edition
eBook
£17.99 £25.99
Paperback
£32.99
Subscription
Free Trial
Renews at £16.99p/m
eBook
£17.99 £25.99
Paperback
£32.99
Subscription
Free Trial
Renews at £16.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. £16.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

Advanced C++

2A. No Ducks Allowed – Types and Deduction

Learning Objectives

By the end of this chapter, you will be able to:

  • Implement your own classes that behave like built-in types
  • Implement classes that control which functions the compiler creates (Rule of Zero/Rule of Five)
  • Develop functions using auto variables, like you always have
  • Implement classes and functions by making use of strong typing to write safer code

This chapter will give you a good grounding in the C++ type system and allow you to write your own types that work in that system.

Introduction

C++ is a strongly typed, statically typed language. The compiler uses type information related to the variables that are used and the context in which they are used to detect and prevent certain classes of programming errors. This means that every object has a type and that type does not change, ever. In contrast, dynamically typed languages such as Python and PHP defer this type checking until runtime (also known as late binding), and the type of a variable may change during the execution of the application. These languages use the duck test instead of the variables type – that is, "if it walks and talks like a duck, then it must be a duck." Statically typed languages such as C++ rely on the type to determine whether a variable can be used for a given purpose, while dynamically typed languages rely on the presence of certain methods and properties to determine its suitability.

C++ was originally described as "C with classes". What does this mean? Basically...

C++ Types

As a strongly and, statically typed language, C++ provides several fundamental types and the ability to define their own types with as much or as little functionality as needed to solve the problem at hand. This section will start by introducing the fundamental types, initializing them, declaring a variable, and associating a type with it. We will then explore how to declare and define a new type.

C++ Fundamental Types

C++ includes several fundamental types, or built-in types. The C++ standard defines the minimum size in memory for each type and their relative sizes. The compiler recognizes these fundamental types and has built-in rules that define what operations can and cannot be performed on them. There are also rules for implicit conversions between types; for example, conversion from an int type to a float type.

Note

See the Fundamental Types section at https://en.cppreference.com/w/cpp/language/types for a brief description of all the built-in types.

C++ Literals

C++ literals are...

Specifying Types – Variables

As C++ is a statically typed language, it is necessary to specify the type of a variable when it is declared. When you declare a function, it is necessary to specify the return type and the types of arguments that are being passed to it. There are two choices for specifying the type to a variable when you declare it:

  • Explicitly: You, as the programmer, are dictating exactly what the type is.
  • Implicitly (using auto): You are telling the compiler to look at the value that was used to initialize the variable and determine its type. This is known as (auto) type deduction.

The general form of declaration for a scalar variable is one of the following:

type-specifier var;                       // 1. Default-initialized variable

type-specifier var = init-value;          // 2. Assignment initialized...

Specifying Types – Functions

Now that we can declare a variable to be of a certain type, we need to do something with those variables. In C++, we do things by calling a function. A function is a sequence of statements that deliver an outcome. That outcome could be a mathematical calculation (for example, an exponent) that is then sent to a file or written to a Terminal.

Functions allow us to break our solution into sequences of statements that are easier to manage and understand. As we write these packaged statements, we can reuse them where it makes sense. If we need it to operate differently based on the context, then we pass in an argument. If it returns a result, then the function needs a return type.

As C++ is a strongly typed language, we need to specify the types related to the functions that we implement – the type of value returned by the function (including no return) and the type of argument(s) that are passed to it, if any.

The following is a typical hello world...

Creating User Types

The great thing about C++ is that you can create your own types using struct, class, enum, or union and the compiler will treat it as a fundamental type throughout the code. In this section, we will explore creating our own type and the methods that we need to write to manipulate it, as well as some methods that the compiler will create for us.

Enumerations

The simplest user-defined type is the enumeration. Enumerations got an overhaul in C++11 to make them even more type-safe, so we have to consider two different declaration syntaxes. Before we look at how to declare them, let's figure out why we need them. Consider the following code:

int check_file(const char* name)

{

  FILE* fptr{fopen(name,"r")};

  if ( fptr == nullptr)

    return -1;

  char buffer[120];

  auto numberRead = fread(buffer, 1, 30, fptr);

  fclose(fptr);

  if (numberRead != 30)

    return -2;

 ...

Summary

In this chapter, we learned about types in C++. Firstly, we touched on the built-in types and then learned how to create our own types that behave like the built-in types. We learned how to declare and initialize variables, got a glimpse of what the compiler generates from the source, where it puts variables, how the linker puts it together, and then what that looks like in the computer's memory. We learned some of the C++ tribal wisdom around the Rule of Zero and the Rule of Five. These form the building blocks of C++. In the next chapter, we will look at creating functions and classes with C++ templates and explore further type deduction as it applies to templates.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Explore C++ concepts through descriptive graphics and interactive exercises
  • Learn how to keep your development bug-free with testing and debugging
  • Discover various techniques to optimize your code

Description

C++ is one of the most widely used programming languages and is applied in a variety of domains, right from gaming to graphical user interface (GUI) programming and even operating systems. If you're looking to expand your career opportunities, mastering the advanced features of C++ is key. The book begins with advanced C++ concepts by helping you decipher the sophisticated C++ type system and understand how various stages of compilation convert source code to object code. You'll then learn how to recognize the tools that need to be used in order to control the flow of execution, capture data, and pass data around. By creating small models, you'll even discover how to use advanced lambdas and captures and express common API design patterns in C++. As you cover later chapters, you'll explore ways to optimize your code by learning about memory alignment, cache access, and the time a program takes to run. The concluding chapter will help you to maximize performance by understanding modern CPU branch prediction and how to make your code cache-friendly. By the end of this book, you'll have developed programming skills that will set you apart from other C++ programmers.

Who is this book for?

If you have worked in C++ but want to learn how to make the most of this language, especially for large projects, this book is for you. A general understanding of programming and knowledge of using an editor to produce code files in project directories is a must. Some experience with strongly typed languages, such as C and C++, is also recommended.

What you will learn

  • Delve into the anatomy and workflow of C++
  • Study the pros and cons of different approaches to coding in C++
  • Test, run, and debug your programs
  • Link object files as a dynamic library
  • Use templates, SFINAE, constexpr if expressions and variadic templates
  • Apply best practice to resource management

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Oct 31, 2019
Length: 762 pages
Edition : 1st
Language : English
ISBN-13 : 9781838821135
Category :
Languages :

What do you get with a Packt Subscription?

Free for first 7 days. £16.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Oct 31, 2019
Length: 762 pages
Edition : 1st
Language : English
ISBN-13 : 9781838821135
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
£16.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
£169.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just £5 each
Feature tick icon Exclusive print discounts
£234.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just £5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total £ 107.97
Advanced C++
£32.99
C++ Data Structures and Algorithm Design Principles
£32.99
Extreme C
£41.99
Total £ 107.97 Stars icon

Table of Contents

9 Chapters
1. Anatomy of Portable C++ Software Chevron down icon Chevron up icon
2A. No Ducks Allowed – Types and Deduction Chevron down icon Chevron up icon
2B. No Ducks Allowed – Templates and Deduction Chevron down icon Chevron up icon
3. No Leaks Allowed - Exceptions and Resources Chevron down icon Chevron up icon
4. Separation of Concerns - Software Architecture, Functions, and Variadic Templates Chevron down icon Chevron up icon
5. The Philosophers' Dinner – Threads and Concurrency Chevron down icon Chevron up icon
6. Streams and I/O Chevron down icon Chevron up icon
7. Everybody Falls, It's How You Get Back Up – Testing and Debugging Chevron down icon Chevron up icon
8. Need for Speed – Performance and Optimization Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
(2 Ratings)
5 star 50%
4 star 0%
3 star 0%
2 star 0%
1 star 50%
Christian Albaret Feb 16, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I bought 5 books at once and could only give a fast glance at this one in order to write he review. It seems I have to write the reviews in order. The book shows many examples and steps through the aspects important to software engineering: seeting up an environment and a workflow, standard C++ concepts, focus on how to implement advanced software concepts with C++.
Feefo Verified review Feefo
Amazon Customer Mar 14, 2023
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
The chapter on writing readable has the most unreadable code I can imagine.Maybe it’s just the kindle version, but all the code is left justified with no indentation at all.This was the first chapter I read, and just deleted it from my device.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.