22
votes
6answers
1k views
Where can I learn more about C++0x?
I would like to learn more about C++0x - are there any good links to get me started or has anyone written a good book on the subject?
19
votes
18answers
1k views
What’s your favorite C++0x feature?
As many of us know (and many, many more don't), C++ is currently undergoing final drafting for the next revision of the International Standard, expected to be published in about 2 years. Drafts and …
17
votes
11answers
932 views
C++0x: a new language?
Hi all.
Recently I started reading (just a bit) the current draft for the future C++0x standard.
There are lots of new features, some of them already available via Boost Libs. Of course, I'm pretty …
16
votes
4answers
396 views
What is your favorite “C++0x” sample? [closed]
I am becoming more and more excited about C++0x these days. It would be interesting to see some elegant examples of the new power. What is your favorite sample that makes other C++ programmers smile?
…
16
votes
6answers
3k views
Why doesn’t C++ have a garbage collector?
I'm not asking this question because of the merits of garbage collection first of all. My main reason for asking this is that I do know that Bjarne Stroustrup has said that C++ will have a garbage …
15
votes
14answers
2k views
Garbage Collection in C++ — why?
I keep hearing people complaining that C++ doesn't have garbage collection. I also hear that the C++ Standards Committee is looking at adding it to the language. I'm afraid I just don't see the point …
14
votes
8answers
1k views
C++0X Concepts are gone. Which other features should go too?
As you may have heard, the last meeting of the C++ standards committee voted to remove concepts from the next C++ standard. Of course, this will affect other features and would seem to throw the …
12
votes
5answers
602 views
C++0x lambdas coding style
I wonder how people are using C++0x lambdas, in terms of coding style. The most interesting question is how thorough to be when writing the capture list. On one hand, the language allows to list …
11
votes
11answers
1k views
Should I reject C++ because it’s becoming a juggernaut?
I have tried to keep up with C++ since they introduced 1998 ANSI/ISO C++. I absorbed the new concepts and tried to understand them. I learned about exception handling, templates, and namespaces. I've …
11
votes
4answers
642 views
Preparing for the next C++ standard
The spate of questions regarding BOOST_FOREACH prompts me to ask users of the Boost library what (if anything) they are doing to prepare their code for portability to the proposed new C++ standard …
10
votes
1answer
476 views
New unicode characters in C++0x
I'm buiding an API that allows me to fetch strings in various encodings, including utf8, utf16, utf32 and wchar_t (that may be utf32 or utf16 according to OS).
New C++ standard had introduced new …
10
votes
8answers
791 views
C++0x Attributes you’d like to see
Recently voted into the C++0x working paper was an attribute syntax. This syntax provides a way to specify other pieces of information to the compiler. The Committee Draft also includes several …
9
votes
7answers
717 views
User-defined literals in C++0x, a much needed addition or making C++ even more bloated?
C++0x will introduce user-defined literals which will allow the introduction of new literal syntax based on existing literals (int, hex, string, float) so that any type will be able to have a literal …
8
votes
12answers
528 views
Are you using C++0x today? [closed]
How many people are following the discussion surrounding and design of C++0x? How has it affected your design choices in your own programs, even before its release? (Anything common you're doing …
8
votes
3answers
296 views
C++0x constexpr and endianness
A common question that comes up from time to time in the world of C++ programming is compile-time determination of endianness. Usually this is done with barely portable #ifdefs. But does the C++0x …
