The c++11 tag has no wiki summary.
6
votes
3answers
768 views
Recommendations for C++ refresh? [closed]
As a seasoned C programmer, with some experience of C++ from way back (1990s), I've decided I'd like to get back up to speed with C++ again. Of course a lot has changed in the last 15 years or so ...
26
votes
6answers
4k views
What does the latest “C++ Renaissance” mean?
There's recently some voice about C++ renaissance, among which the most noteworthy one is from Herb Sutter, Chairman of the C++ Standard Committee. You can search for "C++ renaissance" on Google and ...
13
votes
3answers
770 views
Did C++11 address concerns passing std lib objects between dynamic/shared library boundaries? (ie dlls and so)?
One of my major complaints about C++ is how hard in practice it is to pass std library objects outside of dynamic library (ie dll/so) boundaries.
The std library is often header-only. Which is great ...
10
votes
2answers
749 views
Best overview to modern C++ paradigms?
I used to write C++ extensively between 8 and 10 years ago. I have since moved on to C# for professional reasons. However, from time to time I see statements like
"If you're still manually ...
10
votes
2answers
9k views
What are good books for learning C++11? [closed]
I'm just starting to get interested in C++11 (late I know). Does anyone have any recommendations for books available that cover the new features in depth?
7
votes
3answers
632 views
Achieving forward compatibility with C++11
I work on a large software application that must run on several platforms. Some of these platforms support some features of C++11 (e.g. MSVS 2010) and some don't support any (e.g. GCC 4.3.x). I ...
3
votes
2answers
274 views
How do .so files avoid problems associated with passing header-only templates like MS dll files have?
Based on the discussion around this question. I'd like to know how .so files/the ELF format/the gcc toolchain avoid problems passing classes defined purely in header files (like the std library). ...
2
votes
3answers
453 views
Is C++0x Compatible with C?
I have heard that there will be a lot of changes done in C++ because of the new standard (C++0x). My question is: What are the major changes, and will C++0x be compatible with C++ 98 and C ?