Myths of My Blog Readers
I was inquisitive about your C++ myths. In particular, my German readers were quite active. I got a few E-Mails and observed a vivid discussion on Heise Developer.
This author has not written his bio yet.
But we are proud to say that Rainer Grimm contributed 699 entries already.
I was inquisitive about your C++ myths. In particular, my German readers were quite active. I got a few E-Mails and observed a vivid discussion on Heise Developer.
Demystifying non-rules and myths in C++ is a laborious but essential job. The goal is simple: use the powerful tool C++ appropriately.
Of course, you already know many non-rules and myths about C++. Non-rules and myths which we have to argue against when we use modern C++. The supporting section of the C++ core guidelines addresses the most resistant ones but also provides alternatives.
Let’s recapitulate. I have written about 100 posts on the C++ Core Guidelines in the last two years. Why? The document answers: “This document is a set of guidelines for using C++ well. this document aims to help people to use modern C++ effectively.”. But my story does not end here. The guidelines have a […]
Before I write about the very popular RAII idiom in C++, I want to present you with a trick, which is often quite handy, when you repeatedly search for a text pattern: use negative search.
There is more to write about the usage of regular expressions than I wrote in my last post The Regular Expression Library. Let’s continue.
My original plan was to write about the rules of the C++ Core Guidelines for the regex and chrono library, but besides the subsection title, no content is available. I already wrote a few posts about time functionality. So I’m done. Today, I fill the gap and write about the regex library.
As easy as my title and the rules of the C++ core guidelines sound, getting more performance out of the iostreams is no no-brainer.
Today’s post is about what you should know about Iostreams. In particular, I write about formatted and unformatted In- and Output.
When you interact with the outside world, the iostream library is the way to go in C++. As always, you have to keep a few rules in mind. Let me show which rules.