Tagged Questions

This tag is obsolete, please use c++11 for new questions. C++0x was the unofficial name used while preparing the new C++ standard, C++2011. It will replace the existing C++03 standard with various core language changes and fixes, and an improved and expanded standard library.

learn more… | top users | synonyms

70
votes
7answers
7k views

How can I reliably get the address of an object?

Consider the following program: struct ghost { // ghosts like to pretend that they don't exist ghost* operator&() const volatile { return 0; } }; int main() { ghost clyde; ghost* ...
64
votes
4answers
2k views

Pretty-print C++ STL containers

Please take note of the updates at the end of this post. Update: I have created a public project on GitHub for this library! I would like to have a single template that once and for all takes care ...
62
votes
9answers
5k views

Where can I learn more about C++0x?

I would like to learn more about C++0x. What are some good references and resources? Has anyone written a good book on the subject yet?
42
votes
3answers
1k views

When will C++0x be finished?

Ok, this is the first question I've asked and I didn't know you couldn't answer your own question. Answer: March 25, 2011. :-) I'm not kidding, it's official. Well, at least as far as the ...
40
votes
23answers
3k views

What's your favorite C++0x feature? [closed]

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 ...
33
votes
2answers
1k views

What is the meaning of “… …” token?

While browsing through gcc's current implementation of new C++11 headers, I stumbled upon "......" token. You can check, that the following code compiles fine [via ideone.com]. template <typename ...
32
votes
1answer
2k views

Overload on reference, versus sole pass-by-value + std::move?

It seems the main advice concerning C++0x's rvalues is to add move constructors and move operators to your classes, until compilers default-implement them. But waiting is a losing strategy if you use ...
31
votes
3answers
2k views

Why is the volatile qualifier used through out std::atomic?

From what I've read from Herb Sutter and others you would think that volatile and concurrent programming were completely orthogonal concepts, at least as far as C/C++ are concerned. However, in GCC ...
30
votes
1answer
939 views

Why was std::pow(double, int) removed from C++0x?

While looking into Efficient way to compute p^q (exponentiation), where q is an integer and reviewing the C++98 and C++0x standards I noticed that apparently the std::pow(double, int) overload was ...
29
votes
4answers
1k views

Why aren't there compiler-generated swap() methods in C++0x?

C++ compilers automatically generate copy constructors and copy-assignment operators. Why not swap too? These days the preferred method for implementing the copy-assignment operator is the ...
28
votes
6answers
882 views

Inconsistency between std::string and string literals

I have discovered a disturbing inconsistency between std::string and string literals in C++0x: #include <iostream> #include <string> int main() { int i = 0; for (auto e : ...
27
votes
2answers
3k views

push_back vs emplace_back

I'm a bit confused regarding the difference between push_back and emplace_back. void emplace_back(Type&& _Val); void push_back(const Type& _Val); void push_back(Type&& _Val); As ...
27
votes
7answers
2k views

C++0x - export gone, exception specs deprecated. Will this affect your code?

This latest Herb Sutter trip report on the C++0x standardisation process indicates that the committee has decided to completely drop the "export" concept for templates, and to deprecate exception ...
27
votes
2answers
519 views

non-class rvalues always have cv-unqualified types

§3.10 section 9 says "non-class rvalues always have cv-unqualified types". That made me wonder... int foo() { return 5; } const int bar() { return 5; } void pass_int(int&& i) { ...
26
votes
7answers
792 views

Are Exceptions still undesirable in Realtime environment?

A couple of years ago I was tought, that in real-time applications such as Embedded Systems or (Non-Linux-)Kernel-development C++-Exceptions are undesirable. (Maybe that lesson was from before ...
24
votes
2answers
334 views

What can I do with a moved-from object?

Does the standard define precisely what I can do with an object once it has been moved from? I used to think that all you can do with a moved-from object is do destruct it, but that would not be ...
24
votes
3answers
540 views

C++: Default keyword (classes, not switch)

I've seen default used next to function declarations in a class. What does it do? class C { C(const C&) = default; C(C&&) = default; C& operator=(const C&) & = default; ...
23
votes
4answers
425 views

What kind of “Traits” are used/defined in the C++0x Standard

A trait in C++ encapsulates a family of operations that allow an Algorithm or Data Structure to operator with that type with which it is instantiated. char_traits are an example for grouping string- ...
23
votes
1answer
576 views

std::vector, default construction, C++0x and breaking changes

I ran today against a quite subtle issue I'd like to have your opinion on. Consider the following garden-variety shared-body-idiom class: struct S { S() : p_impl(new impl) {} private: struct ...
23
votes
7answers
2k views

In C++, is it still bad practice to return a vector from a function?

Short version: It's common to return large objects—such as vectors/arrays—in many programming languages. Is this style now acceptable in C++0x if the class has a move constructor, or do C++ ...
23
votes
1answer
1k views

Odd behavior when recursively building a return type for variadic functions

This is probably going to be a really simple explanation, but I'm going to give as much backstory as possible in case I'm wrong. Advanced apologies for being so verbose. I'm using gcc4.5, and I ...
23
votes
13answers
4k 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 ...
22
votes
4answers
689 views

How to allow copy elision construction for C++ classes (not just POD C structs)

Consider the following code: #include <iostream> #include <type_traits> struct A { A() {} A(const A&) { std::cout << "Copy" << std::endl; } A(A&&) { ...
22
votes
4answers
653 views

std::string with no free store memory allocation

I have a question very similar to How do I allocate a std::string on the stack using glibc's string implementation? but I think it's worth asking again. I want an std::string with local ...
21
votes
5answers
603 views

C++: meaning of = delete after function declaration

class my_class { ... my_class(my_class const &) = delete; ... }; What does = delete mean in that context? Are there any other "modifiers" (other than = 0 and = delete)?
21
votes
6answers
2k views

Should I use C++0x Features Now?

With the official release of VS 2010, is it safe for me to start using the partially-implemented C++0x feature set in my new code? The features that are of interest to me right now are both ...
20
votes
5answers
698 views

Should I switch from using boost::shared_ptr to std::shared_ptr?

I would like to enable support for C++0x in GCC with -std=c++0x. I don't absolutely necessarily need any of the currently supported C++0x features in GCC 4.5 (and soon 4.6), but I would like to start ...
20
votes
2answers
307 views

Are value parameters implicitly moved when returned by value?

Consider the following function: Foo foo(Foo x) { return x; } Will return x invoke the copy constructor or the move constructor? (Let's leave NRVO aside here.) To investigate, I wrote a simple ...
20
votes
3answers
387 views

Suggestions on how to modernize one's knowledge in C++?

this is my conundrum - I haven't touched a C or C++ compiler since 1998 (last time I used either was for CORBA development). By needs, I left C++ to other pastures (Java and other stuff), and now I ...
20
votes
3answers
2k views

What C++0x features does Visual Studio 2010 support?

There is a list for GCC; is there a similar list for Visual Studio 2010?
19
votes
3answers
452 views

C++ Types Impossible to Name

While reading Wikipedia's page on decltype, I was curious about the statement, Its [decltype's] primary intended use is in generic programming, where it is often difficult, or even impossible, ...
19
votes
2answers
623 views

Compacting garbage collector implementation in C++0x

I'm implementing a compacting garbage collector for my own personal use in C++0x, and I've got a question. Obviously the mechanics of the collector depend upon moving objects, and I've been wondering ...
19
votes
8answers
535 views

Exceptions with Unicode what()

Or, "how do Russians throw exceptions?" The definition of std::exception is: namespace std { class exception { public: exception() throw(); exception(const exception&) throw(); ...
19
votes
8answers
1k views

Is there some ninja trick to make a variable constant after its declaration?

I know the answer is 99.99% no, but I figured it was worth a try, you never know. void SomeFunction(int a) { // Here some processing happens on a, for example: a *= 50; a %= 10; ...
19
votes
5answers
2k 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 ...
18
votes
1answer
350 views

Why couldn't push_back be overloaded to do the job of emplace_back?

Firstly, I'm aware of this question, but I don't believe I'm asking the same thing. I know what std::vector<T>::emplace_back does - and I understand why I would use it over push_back(). It ...
18
votes
4answers
580 views

How fast are lambda functions in GCC

Having toyed around a bit with C++0x Lamda Expression in G++, I was wondering as to how well the performance will be in general/specific situations compared to alternative ways without using lambda ...
18
votes
2answers
463 views

C++ vector of arrays

Why does this work: std::pair<int, int> p = {1,2}; std::vector<std::pair<int, int>> vp = { {1,2}, {3,4} }; But this doesn't? std::array<int, 2> a = {1,2}; // still ok ...
18
votes
5answers
783 views

Standard library tags

I use tag files for code completion and for a quick, inline view of parameters, overloads, files (where declared), etc. Where can I find freely available tags for the C99, C++03, and C++0x standard ...
18
votes
6answers
1k views

Why is std::function not equality comparable?

This question also applies to boost::function and std::tr1::function. std::function is not equality comparable: #include <functional> void foo() { } int main() { ...
18
votes
13answers
1k views

What C++0x feature will have the most impact?

What will day to day C++ development be like in a few years? What C++0x features will change C++ development the most? In what order should I concentrate learning these new features?
18
votes
1answer
3k 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 ...
17
votes
5answers
347 views

Standard library containers producing a lot of copies on rvalues in GCC

I'm writing a app for both linux & windows, and noticed that the GCC build is producing a lot of useless calls to the copy constructor. Here's an example code to produce this behavior: struct A ...
17
votes
2answers
932 views

Modules in C++0x

I just discovered this old C++0x draft about modules in C++0x. The idea was to get out of the current .h/.cpp system by writing only .cpp files which would then generate module files during ...
16
votes
1answer
280 views

Does extern template prevent inlining of functions?

I'm not entirely clear on how the new extern template feature is meant to work in C++11. I understand that it is intended to help speed up compilation time, and simplify linking issues with shared ...
16
votes
1answer
162 views

Comparing variadic templates

If I have two variadic template arguments, A and B, how can I ensure at compile-time that the types of all of the members of A are also the types of a subset of B (in the same order)? Contrived ...
16
votes
4answers
288 views

When auto is used against array, why it's converted to pointer and not reference?

See the below example: int arr[10]; int *p = arr; // 1st valid choice int (&r)[10] = arr; // 2nd valid choice Now when we use auto against arr then, it chooses the 1st choice. auto x = arr; // ...
16
votes
2answers
480 views

C++0x: create static array with variadic templates

There was an answer on stackoverflow (which I can't seem to find anymore) which demonstrated how a variadic template can be used in C++0x to create a static array at compile time: template <class ...
16
votes
5answers
610 views

Why do std::shared_ptr<void> work

I found some code using std::shared_ptr to perform arbitrary cleanup at shutdown. At first I thought this code could not possibly work, but then I tried the following: #include <memory> ...
16
votes
10answers
1k views

When should you use constexpr capability in C++0x?

It seems to me that having a "function that always returns 5" is breaking or diluting the meaning of "calling a function". There must be a reason, or a need for this capability or it wouldn't be in ...

1 2 3 4 5 25