This is a question in two parts, the first is the most important and concerns now:
- Are you following the design and evolution of C++11? What blogs, newsgroups, committee papers, and other resources do you follow?
- Even where you're not using any new features, how have they affected your current choices?
- What new features are you using now, either in production or otherwise?
The second part is a follow-up, concerning the new standard once it is final:
- Do you expect to use it immediately? What are you doing to prepare for C++11, other than as listed for the previous questions?
- Obviously, compiler support must be there, but there's still co-workers, ancillary tools, and other factors to consider. What will most affect your adoption?
Edit: The original really was too argumentative; however, I'm still interested in the underlying question, so I've tried to clean it up and hopefully make it acceptable. This seems a much better avenue than duplicating—even though some answers responded to the argumentative tone, they still apply to the extent that they addressed the questions, and all answers are community property to be cleaned up as appropriate, too.
Learning about the features coming in for C++0x was interesting, in particular when I realized I was already using some of them via C++ TR1. So far the extended
for
("foreach"),static_assert
and the improvements in<functional>
are the ones I'm using the more in C++0x programs.It has also taught me a bit about code reuse. Trying to reduce the amount of code I have to change to adapt to C++0x, and at the same time preserve the code compatible with C++-pre-0x as much as I can (for eg.: library stuff) has taught me to integrate some C++0x fixes and elements to my pre-C++0x toolbox; in particular extending
numeric_limits<>
to include the const_ members, adding nullptr emulation, addingdefault_delete
and similar constructs, and making use of the (apparently often forgotten, as I've not found code using it besides mine)[slist|forward_list]
.I'd say using C++0x today has helped me better continue to use C++-pre-0x today. I'm not sure I'll be taking the leap to "full" C++0x anytime soon, considering Boost helps to cover some ground there. And that I don't intend to touch regexes or threads with C++ in a long, long time.