

Buy anything from 5,000+ international stores. One checkout price. No surprise fees. Join 2M+ shoppers on Desertcart.
Desertcart purchases this item on your behalf and handles shipping, customs, and support to South Africa.
The professional programmer's Deitel ® guide to C++20 Written for programmers with a background in another high-level language, in this book, you'll learn Modern C++ development hands on using C++20 and its "Big Four" features--Ranges, Concepts, Modules and Coroutines. (For more details, see the Preface, and the table of contents diagram inside the front cover.) In the context of 200+, hands-on, real-world code examples, you'll quickly master Modern C++ coding idioms using popular compilers--Visual C++ ® , GNU ® g++, Apple ® Xcode ® and LLVM ® /Clang. After the C++ fundamentals quick start, you'll move on to C++ standard library containers array and vector; functional-style programming with C++20 Ranges and Views; strings, files and regular expressions; object-oriented programming with classes, inheritance, runtime polymorphism and static polymorphism; operator overloading, copy/move semantics, RAII and smart pointers; exceptions and a look forward to C++23 Contracts; standard library containers, iterators and algorithms; templates, C++20 Concepts and metaprogramming; C++20 Modules and large-scale development; and concurrency, parallelism, the C++17 and C++20 parallel standard library algorithms and C++20 Coroutines. Features Rich coverage of C++20's "Big Four": Ranges, Concepts, Modules and Coroutines Objects-Natural Approach: Use standard libraries and open-source libraries to build significant applications with minimal code Hundreds of real-world, live-code examples Modern C++: C++20, 17, 14, 11 and a look to C++23 Compilers: Visual C++ ® , GNU ® g++, Apple Xcode ® Clang, LLVM ® /Clang Docker: GNU ® GCC, LLVM ® /Clang Fundamentals: Control statements, functions, strings, references, pointers, files, exceptions Object-oriented programming: Classes, objects, inheritance, runtime and static polymorphism, operator overloading, copy/move semantics, RAII, smart pointers Functional-style programming: C++20 Ranges and Views, lambda expressions Generic programming: Templates, C++20 Concepts and metaprogramming C++20 Modules: Large-Scale Development Concurrent programming: Concurrency, multithreading, parallel algorithms, C++20 Coroutines, coroutines support libraries, C++23 executors Future: A look forward to Contracts, range-based parallel algorithms, standard library coroutine support and more " C++20 for Programmers builds up an intuition for modern C++ that every programmer should have in the current software engineering ecosystem. The unique and brilliant ordering in which the Deitels present the material jibes much more naturally with the demands of modern, production-grade programming environments. I strongly recommend this book for anyone who needs to get up to speed on C++, particularly in professional programming environments where the idioms and patterns of modern C++ can be indecipherable without the carefully crafted guidance that this book provides." -- Dr. Daisy Hollman, ISO C++ Standards Committee Member "This is a fine book that covers a surprising amount of the very large language that is C++20. An in-depth treatment of C++ for a reader familiar with how things work in other programming languages." -- Arthur O'Dwyer, C++ trainer, Chair of CppCon's Back to Basics track, author of several accepted C++17/20/23 proposals and the book Mastering the C++17 STL "Forget about callback functions, bare pointers and proprietary multithreading libraries--C++20 is about standard concurrency features, generic lambda expressions, metaprogramming, tighter type-safety and the long-awaited concepts, which are all demonstrated in this book. Functional programming is explained clearly with plenty of illustrative code listings. The excellent chapter, 'Parallel Algorithms and Concurrency: A High-Level View,' is a highlight of this book." -- Danny Kalev, Ph.D. and Certified System Analyst and Software Engineer, Former ISO C++ Standards Committee Member Register your book for convenient access to downloads, updates, and/or corrections as they become available. See inside book for details. Note: eBooks are 4-color and print books are black and white.
| Dimensions | 7 x 1.75 x 9.12 inches |
| Edition | 3rd |
| Isbn 10 | 0136905692 |
| Isbn 13 | 978-0136905691 |
| Item Weight | 3.34 pounds |
| Language | English |
| Part Of Series | Deitel Developer Series |
| Print Length | 960 pages |
| Publication Date | April 16, 2022 |
| Publisher | Pearson |
User
Solid Book on C++20
I have worked in C++ for over 20 years, though my role has changed several times and I have learned and worked with other languages over time. I decided it was time to refamiliarize myself with C++ and bring myself up to the C++20 standard (23 is out as I write this, but the version of the compiler I am using isn't up to that standard and I have limited options for upgrading the system). After looking at several books online I chose this one by Deitel and Deitel, as I have an older book by them and it served me well. This one is no different.I will start by saying this: I don't care if the book uses color or black and white. Color costs more to print and drives up the cost of the volume. I am content with the present format. Color would be nice, but it's not a big deal to me.I like that this book approaches the readers like they're not total idiots. It makes some good assumptions about the audience - there are intelligent people reading, and they have some experience with either previous versions of the language or have relevant knowledge of another high-level language. There is a C++ introduction in the first couple of chapters, and it deals with basics of the language and how to mess with various compilers; it's not an in-depth crash course but is instead enough to get the reader moving.After the language and compiler introduction, the language coverage is far and deep, addressing inheritance, modules, templates, memory management, concurrency, and more. With this book, someone who doesn't know the language yet will walk away with a good working knowledge, while someone who already knows a previous standard will come away with a more solid foundation and a sharper skill set.What I particularly like about this book is how the authors highlight core language guidelines, standards compliance and potential errors. This alone, to me, is worth the cost of the book. I have found that while I was effective at using the language, there was a lot of things I could do so much better, and following the examples laid out in this book I am well on my way to doing that.This is a solid offering on an complex computer language. It was written for developers looking to either migrate to C++20 or C++ programmers looking to update their skills and embrace the latest widely adopted standard.
User
Si excelente libro llegó a tiempo
Si excelente libro llegó a tiempo
User
Very Good Instruction
I have been a software engineer for over 20 years. I like your book, C++20 For Programmers, for a few reasons:1) The code for each program has line numbers in your book, but in other books, they do not have line numbers. That makes it easier to follow when the code being shown is not in one block.2) You kept up to date with the latest version of Visual Studio 2019. I was able to run the format example for C++20 on VS2019. I understand that in your case since you published in February of this year, you were using version 17.05 . At the time I did the example, I was using VS2019, version 17.20. (Now 17.21) . I was able to use #include <format> directly without having to download the 3rd party format class.3) I am grateful that I was able to run the BigNumber example. I just had to make sure of two things.a. I had to make sure to include the Big Numbers directory in the Additional Include directory search path.b. I had to make sure to include the bignumber.h in the header files in the project, and also the bignumber.cpp file in the Source Files of the project.c. But, once I did these two steps, it worked like a charm. I appreciate the instructions that you provided in order to do these two important steps.4) Your explanations in the book are clear.I plan on purchasing your book on Python for Programmers, after I finish with the C++ book.
User
Great for an experienced C programmer looking to understand modern C++ syntax and capabilities
I learned c in the early eighties programming on System V with guidance from Kernighan and Ritchie. Since then I used c variants including Visual C++, gcc and Objective C. A recent set of projects were being scoped for the C++20 environment. I found the Deitel C++ book to be at the perfect level for me. Well structured layout, many examples using MacOS, Linux and Windows and good depth on new syntax and capabilities in modern C++.
User
Paperback version is disappointing
Occasionally I update my library with various books and will buy printed copies of those books in addition to the digital version. Compared to previous books published on C++ by Deitel, these are of a poorer quality (the paperback version). There isn't any color in the pages of the book and the paper isn't of the same quality as some past books - C++ How to Program, Fifth Edition, as an example.If you like the past paperback books published and their construction, you might consider only the digital version for this one.Deitel / Pearson, please bring back a higher level of quality to your printed versions.
User
Modules chapter
The modules chapter is a complete mess. The Time class example does not link on g++ and does not even compile on clang++.
User
Fast Shipping and a Good Modern C++ 20 Book
This book is for those of you looking to learn Modern C++ 20900+ pages
User
Poorly organized and filled with typos in example code...
While an experienced programmer can decipher how the code should be written, a novice will likely go nuts as many examples contain typos (including the classic C++ error of forgetting to add a semi-colon). The chapters are not organized very well and often make references to important information that is at the end of the book. If it is so important, why is it at the end? Granted things can't be all packed into a chapter, but the references in the book jump around all over the place.
User
If you are into C++ this is for you!
Love this book, you should read it if you like this subject!
User
Didáctico y actualizado a C++20
Actualizado a C++20 con multitud de ejemplos de código que siempre compilan. Muy didáctico y bien estructurado. Los conceptos se explican con claridad y con un buen número de ejemplos. Disfruté y aprendí mucho con este libro. Lo recomiendo.
User
Mega Buch
Super Buch um C plus Plus zu lernen
User
No OTP asked
This review is for delivery:I have skimmed through pages but not checked page by page. All pages are there. However, no OTP was asked for delivery.Regarding the book:The book is good with examples, but it doesn't seem to be as detailed as "How to Program" Series by the same author. I have an older version of "How to Program with C++" and its more thorough than this one.
User
Super didático
Quem conhece os Deitel sabe que seus livros não tem pareia. Muito didático, cheio de exemplos. E com uma profundidade nível intermediário. Para quem já sabe programar e que desenvolver-se em C++ (20).
Trustpilot
3 weeks ago
2 weeks ago