Book Image

Advanced C++

By : Gazihan Alankus, Olena Lizina, Rakesh Mane, Vivek Nagarajan, Brian Price
5 (1)
Book Image

Advanced C++

5 (1)
By: Gazihan Alankus, Olena Lizina, Rakesh Mane, Vivek Nagarajan, Brian Price

Overview of this book

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.
Table of Contents (11 chapters)
7
6. Streams and I/O

Type Aliases – typedef and using

If you have used the std::string class, then you have been using an alias. There are a few template classes related to strings that need to implement the same functionality. But the type representing a character is different. For example, for std::string, the representation is char, while std::wstring uses wchar_t. There are several others for char16_t and char32_t. Any variation in the functionality will be managed through traits or template specialization.

Prior to C++11, this would have been aliased from the std::basic_string base class, as follows:

namespace std {

  typedef basic_string<char> string;

}

This does two main things:

  • Reduces the amount of typing required to declare the variable. This is a simple case, but when you declare a unique pointer to a map of strings to object, it can get very long and you will make errors:

    typedef std::unique_ptr<std::map<std::string,myClass>> UptrMapStrToClass;

  • Improves the readability...