I’m at the ACCU 2013 conference, and this morning Bjarne Stroustrup held a keynote about C++11. One of his points was that full adoption of C++11 will take some time, due to compilers, libraries etc. lagging behind, but also due to many programmers not wanting to use new things in general. What can you do about it? Bjarne briefly suggested we fight the FUD by starting to introduce the very simplest features that just make everyone’s lives easier. Here is my take on that.
Simple feature #1: Uniform Initilaization
Initializing containers used to be painful. For example, initializing a vector of ints required a long list of push_back
s, or something like this:
int tmp_v[] = {1, 1, 2, 3, 5, 8}; vector<int> old_v(tmp_v, tmp_v + sizeof(tmp_v) / sizeof(tmp_v[0]));
Now however, we can do this:
vector<int> new_v = {1, 1, 2, 3, 5, 8};
Even the most hard-core “I don’t need all that new stuff” legacy programmer will appreciate that. Btw, I think this is especially useful in unit tests, where you typically initialize a lot of data manually. (Those legacy programmers probably “don’t need all that new unit testing stuff” either, though.)
This becomes even more important when you have more complex containers:
vector<pair<int, string>> ints = {{1, "one"}, {2, "two"}};
Simple feature #2: Type deduction
Let’s say we want to print out that vector of pairs from the previous example. This is how you’d do it in C++03:
for (vector<pair<int, string>>::const_iterator it = ints.begin(); it != ints.end(); ++it) { cout << it->first << ":" << it->second << " "; }
That vector<pair<int,string>>::const_iterator
is a bit cumbersome, right? Well, in C++11 we can let the compiler figure out the type for us:
for (auto it = ints.begin(); it != ints.end(); ++it) { cout << it->first << ":" << it->second << " "; } cout << endl;
Note that auto
is resolved compile-time, this is not dynamic typing. But we can do even better:
Simple feature #3: Range based for
for (auto& elm : ints) { cout << elm.first << ":" << elm.second << " "; } cout << endl;
This really is as simple as it gets. Notice that the type of elm
is no longer an iterator, it is a reference to the element. This means you no longer have to dereference the iterator, and things become even simpler. (Not having to dereference is a bigger issue when the containers store pointers, and you end up doing (*it)->member
.)
(Not so?) simple feature #4: Lambdas
The first three features should be fairly simple to convince anyone to use. I would however argue that it should be fairly simple to make an argument for the simplest uses of lambda functions too.
Lets say we want to find an element in that vector<pair>
. To do that, we need a predicate function/functor. In C++03, we would need to either do something with std::bind_1st / std::bind_2nd
, or write our own predicate like this:
class CompareString { public: CompareString(string s) : s(s) {} bool operator()(const pair<int,string>& p) { return p.second == s; }; private: string s; }; auto it = find_if(ints.begin(), ints.end(), CompareString("two"));
We are not really interested in making that class. All we want is the content of operator()
. Wouldn’t it be nice if we could just paste that code directly in the call to find_if
? Something like this?
auto it2 = find_if(ints.begin(), ints.end(), bool operator()(const pair<int,string>& p) { return p.second == "two";});
With lambdas, we can:
auto it2 = find_if(ints.begin(), ints.end(), [](const pair<int,string>& p) { return p.second == "two";});
For the purpose of this article, []
can be read as “lambda function follows:”. Notice that we don’t even have to specify the return type, as it can be deduced by the compiler.
Conclusion
That’s it! Just a few simple things to start introducing in you code base, to fight the FUD and convince the legacy programmers that C++11 is nice. (And sorry if this blog post feels a bit rushed, I wrote it during lunch at ACCU 2013. Now I’m off to see my friend Mike Long talk about legacy code base restoration projects.)
As usual, the code for this blog post is available on GitHub.
If you enjoyed this post, you can subscribe to my blog, or follow me on Twitter.
Like