With the new standard, there are new ways of doing things, and many are nicer than the old ways, but the old way is still fine. It's also clear that the new standard doesn't officially deprecate very much, for backward compatibility reasons. So the question that remains is:

What old ways of coding are definitely inferior to C++11 styles, and what can we now do instead?

In answering this, you may skip the obvious things like "use auto variables".

link|improve this question

6  
You can't deprecate idioms. – Pubby Feb 15 at 18:33
3  
Herb Sutter's talk at Going Native 2012 covered this: – bames53 Feb 15 at 18:35
2  
Returning constant values is no longer encouraged. Obviously auto_ptr is deprecated, too. – Kerrek SB Feb 15 at 18:38
9  
Of course you can, Pubby. Before C++ templates were invented, there was a macro technique to do templates. Then C++ added them, and the old way was considered bad. – Alan Baljeu Feb 15 at 18:41
6  
This question really needs to be moved to Programmers.se. – Nicol Bolas Feb 15 at 19:11
show 4 more comments
feedback

6 Answers

up vote 27 down vote accepted
  1. Final Class: C++11 provides the final keyword to prevent class derivation
  2. C++11 lambdas substantially reduce the need for named function object (functor) classes.
  3. Move Constructor: The magical ways in which std::auto_ptr works are no longer needed due to first-class support for rvalue references.
  4. Safe bool: This was mentioned earlier. Explicit operators of C++11 obviate this very common C++03 idiom.
  5. Shrink-to-fit: Many C++11 STL contains provide shrink_to_fit() member function, which should eliminate the need swapping with a temporary.
  6. Temporary Base Class: Some old C++ libraries use this rather complex idiom. With move semantics it's no longer needed.
  7. Type Safe Enum Enumerations are very safe in C++11.
  8. Prohibiting heap allocation: The "= delete" syntax is a much more direct way of saying that a particular functionality is explicitely denied. This is applicable to preventing heap allocation (i.e., =delete for member operator new), preventing copies, assignment, etc.
  9. templated typedef: Alias templates in C++11 reduce the need for simple templated typedefs. However, complex type generators still need meta functions.
  10. Some numerical compile-time computations, such as fibonacci can be easily replaced using Generalized constant expressions
  11. result_of: Uses of class template result_of should be replaced with decltype. I think result_of uses decltype when it is available.
  12. In-class member initializers save typing for default initialization of non-static members with default values.
  13. In new C++11 code NULL should be redefined as nullptr but see STL's talk to learn why they decided against it.
  14. Expression Template fanatics are delighted to have the trailing return type function syntax in C++11. No more 30 lines long return types!

I think I'll stop there!

link|improve this answer
Thanks for the detailed stuff! – Alan Baljeu Feb 22 at 15:41
feedback

At one point in time it was argued that one should return by const value instead of just by value:

const A foo();
^^^^^

This was mostly harmless in C++98/03, and may have even caught a few bugs that looked like:

foo() = a;

But returning by const is contraindicated in C++11 because it inhibits move semantics:

A a = foo();  // foo will copy into a instead of move into it

So just relax and code:

A foo();  // return by non-const value
link|improve this answer
9  
+1 I've been arguing with a colleague for years that one should return const values, to trap some errors (even Meyers recommends it). Now he has the last laugh! – Raedwald Feb 16 at 10:32
+1 for starting my day off with a chuckle. :-) – Howard Hinnant Feb 16 at 15:21
feedback

As soon as you can abandon 0 and NULL in favor of nullptr, do so!

In non-generic code the use of 0 or NULL is not such a big deal. But as soon as you start passing around null pointer constants in generic code the situation quickly changes. When you pass 0 to a template<class T> func(T) T gets deduced as an int and not as a null pointer constant. And it can not be converted back to a null pointer constant after that. This cascades into a quagmire of problems that simply do not exist if the universe used only nullptr.

C++11 does not deprecate 0 and NULL as null pointer constants. But you should code as if it did.

link|improve this answer
feedback

Safe bool idiomexplicit operator bool().

Private copy constructors (boost::noncopyable) → X(const X&) = delete

Simulating final class with private destructor and virtual inheritanceclass X final

link|improve this answer
good and concise examples, one of which even carries the word "idiom" in it. well put – phresnel Feb 16 at 15:12
Wow, I've never seen the 'safe bool idiom' before, it looks quite disgusting! I hope I never need it in pre-C++11 code... – boycy Feb 23 at 9:02
feedback

One of the things that just make you avoid writing basic algorithms in C++11 is the availability of lambdas in combination with the algorithms provided by the standard library.

I'm using those now and it's incredible how often you just tell what you want to do by using count_if(), for_each() or other algorithms instead of having to write the damn loops again.

Once you're using a C++11 compiler with a complete C++11 standard library, you have no good excuse anymore to not use standard algorithms to build your's. Lambda just kill it.

Why?

In practice (after having used this way of writing algorithms myself) it feels far easier to read something that is built with straightforward words meaning what is done than with some loops that you have to uncrypt to know the meaning. That said, making lambda arguments automatically deduced would help a lot making the syntax more easily comparable to a raw loop.

Basically, reading algorithms made with standard algorithms are far easier as words hiding the implementation details of the loops.

I'm guessing only higher level algorithms have to be thought about now that we have lower level algorithms to build on.

link|improve this answer
6  
Actually there is a good excuse. You're using Boost.Range's algorithms, which are much nicer ;) – Nicol Bolas Feb 15 at 18:42
6  
I don't see that for_each with a lambda is any better than the equivalent range-based for loop, with the contents of the lambda in the loop. The code looks more or less the same, but the lambda introduces some extra punctuation. You can use equivalents of things like boost::irange to apply it to more loops than just those that obviously use iterators. Plus the range-based for loop has greater flexibility, in that you can exit early if required (by return or by break), whereas with for_each you'd need to throw. – Steve Jessop Feb 15 at 18:49
3  
@SteveJessop It have been explained by far better people than me before, but basically a loop is a loop, while a for_each is "a loop that goes through all the elements of a 'range'". In practice (after having used this way of writing algorithms myself) it feels far easier to read something that is built with straightforward words meaning what is done than with some loops that you have to uncrypt to know the meaning. That said, making lambda arguments automatically deduced would help a lot making the syntax more easily comparable to a raw loop, so I understand your feeling. – Klaim Feb 15 at 18:54
3  
@SteveJessop: Even so, the availability of range-based for makes the usual it = c.begin(), const end = c.end(); it != end; ++it idiom defunct. – Ben Voigt Feb 15 at 19:03
5  
@SteveJessop One advantage of the for_each algorithm over the range based for loop is that you can't break or return. That is, when you see for_each you know immediately without looking at the body that there's no such trickiness. – bames53 Feb 15 at 19:18
show 11 more comments
feedback

You'll need to implement custom versions of swap less often. In C++03, an efficient non-throwing swap is often necessary to avoid costly and throwing copies, and since std::swap uses two copies, swap often has to be customized. In C++, std::swap uses move, and so the focus shifts on implementing efficient and non-throwing move constructors and move assignment operators. Since for these the default is often just fine, this will be much less work than in C++03.

Generally it's hard to predict which idioms will be used since they are created through experience. We can expect an "Effective C++11" maybe next year, and a "C++11 Coding Standards" only in three years because the necessary experience isn't there yet.

link|improve this answer
I'm doubtful of this. Recommended style is to use swap for move and copy construction, but not std::swap because that would be circular. – Alan Baljeu Feb 17 at 16:47
Yeah but the move constructor usually calls a custom swap, or it is essentially equivalent. – Inverse Feb 19 at 16:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.