Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
C++ High Performance

You're reading from  C++ High Performance

Product type Book
Published in Jan 2018
Publisher Packt
ISBN-13 9781787120952
Pages 374 pages
Edition 1st Edition
Languages
Authors (2):
Björn Andrist Björn Andrist
Profile icon Björn Andrist
Viktor Sehr Viktor Sehr
Profile icon Viktor Sehr
View More author details

Table of Contents (13) Chapters

Preface 1. A Brief Introduction to C++ 2. Modern C++ Concepts 3. Measuring Performance 4. Data Structures 5. A Deeper Look at Iterators 6. STL Algorithms and Beyond 7. Memory Management 8. Metaprogramming and Compile-Time Evaluation 9. Proxy Objects and Lazy Evaluation 10. Concurrency 11. Parallel STL 12. Other Books You May Enjoy

Introduction to template metaprogramming

When writing regular C++ code, it is eventually transformed to machine code. Metaprogramming, on the other hand, is code that transforms itself into regular C++ code. When using metaprogramming, it is important to remember that its main use case is to make great libraries and, thereby, hide complex constructs/optimizations from the user code. So, remember that howsoever complex the interior of the metacode may be, it's important to hide it behind a good interface so that the user code base is easy to read and use.

In its simplest and most common form, template metaprogramming in C++ is used to generate functions, values, and classes that accept different types.

Let's take a look at a simple pow() function and a Rectangle class. By using a template parameter, the rectangle can be used with any integer or floating point type. Without...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}