2
votes
4answers
136 views
Bind Vs Lambda?
Hi,
I have a question about which style is preferred: std::bind Vs lambda in C++0x. I know that they serve -somehow- different purposes but lets take an example of intersecting functionality.
Using …
6
votes
6answers
117 views
Learning about C++ 0x features.
What is a good place to learn about the new C++ 0x features? I understand that they may not have been fully finalized yet but it would be nice to get a head start. Also, what compilers currently …
16
votes
4answers
394 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?
…
5
votes
2answers
183 views
Uniform initialization in C++0x, when to use () instead of {}?
Hi,
Is there a rule of thumb to decide when to use the old syntax () instead of the new syntax {}?
To initialize a struct:
struct myclass
{
myclass(int px, int py) : x(px), y(py) {}
private:
…
2
votes
2answers
148 views
C++0x, Compiler hooks and hard coded languages features.
I'm a little curious about some of the new features of C++0x. In particular range-based for loops and initializer lists. Both features require a user-defined class in order to function correctly.
I …
3
votes
2answers
134 views
How to find what’s new in VC++ v10?
Hello,
Googling nor binging "VC++ What's new C++0x" gives me nothing that tells me what is new.Is there an official page at msdn or something similiar that contains the information for VC++ 10? I've …
8
votes
12answers
526 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 …
5
votes
2answers
181 views
Cache Line Alignment (Need clarification on article)
I've recently encountered what I think is a false-sharing problem in my application, and I've looked up Sutter's article on how to align my data to cache lines. He suggests the following C++ code:
// …
1
vote
5answers
160 views
C++ STL unordered_map problems and doubts
Hello,
after some years in Java and C# now I'm back to C++. Of course my programming style is influenced by those languages and I tend to feel the need of a special component that I used massively: …
2
votes
2answers
154 views
std::regex — is there some lib that needs to be linked?
I get a linker error with the following code:
#include <regex>
int main()
{
std::regex rgx("ello");
return 0;
}
test.o: In function `basic_regex':
…
4
votes
2answers
153 views
What is #defined if a compiler is Cpp0x compliant?
Is there any official, or inofficial, #defines for when a compiler is Cpp0x compliant?
Even better, for specific Cpp0x functionality (~#cpp0xlambda, #cpp0xrvalue etc)?
(Haven't found anything about …
3
votes
4answers
201 views
What does static_assert do, and what would you use it for?
Could you give an example where static_assert(...) 'C++0x' would solve the problem in hand elegantly?
I am familiar with run-time assert(...). When should I prefer static_assert(...) over regular …
8
votes
3answers
375 views
Using GCC’s C++0x mode in production?
Is anyone using the GCC 4.4.0 C++0x support in production? I'm thinking about using it with the latest MinGW, but I'm not sure if it's mature enough.
I'm interested in:
TR1 support
auto
initializer …
3
votes
3answers
184 views
Copy elision on Visual C++ 2010 Beta 2
I was reading 'Want Speed? Pass by Value' on the C++ Next blog and created the following program to get a feel for copy elision and move semantics in C++0x: http://pastebin.com/f39c826c6
However I am …
8
votes
3answers
295 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 …
