C++11 is the name of the new C++ standard. It replaces the previous C++03 standard, adding various core language changes and fixes, and an improved and expanded standard library. C++11 has been referred to as C++0x, because it was originally expected to be published before 2010. The ISO standard, ...
262
votes
5answers
17k views
C++11 introduced a standardized memory model. What does it mean? And how is it going to affect C++ programming?
C++11 introduced a standardized memory model, but what exactly does that mean? And how is it going to affect C++ programming?
Herb Sutter says here that,
The memory model means that C++ code
...
141
votes
5answers
5k views
What are rvalues, lvalues, xvalues, glvalues, and prvalues?
In C++03, an expression is either an rvalue or an lvalue.
In C++0x, an expression can be an:
rvalue
lvalue
xvalue
glvalue
prvalue
Two categories have become five categories.
What are these ...
82
votes
9answers
4k views
What breaking changes are introduced in C++11?
I know that at least one of the changes in C++11 that will cause some old code to stop compiling: the introduction of explicit operator bool() in the standard library, replacing old instances of ...
80
votes
8answers
3k views
What differences, if any, between C++03 and C++0x can be detected at run-time?
It is possible to write a function, which, when compiled with a C compiler will return 0, and when compiled with a C++ compiler, will return 1 (the trivial sulution with
#ifdef __cplusplus is not ...
71
votes
6answers
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* ...
69
votes
4answers
3k 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
2answers
2k views
What does T&& mean in C++11?
I've been looking into some of the new features of C++11 and one I've noticed is the double ampersand in declaring variables, like T&& var.
For a start, what is this beast called? I wish ...
62
votes
9answers
19k 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 ...
58
votes
7answers
3k views
Optimizing away a “while(1);” in C++0x
Updated, see below!
I have heard and read that C++0x allows an compiler to print "Hello" for the following snippet
#include <iostream>
int main() {
while(1)
;
std::cout << ...
51
votes
6answers
3k views
Rule-of-Three becomes Rule-of-Five with C++11?
So, after watching this wonderful lecture on rvalue references, I thought that every class would benefit of such a "move constructor", template<class T> MyClass(T&& other) edit and of ...
50
votes
3answers
1k views
Is string::c_str() no longer null terminated in C++11?
In C++11 basic_string::c_str is defined to be exactly the same as basic_string::data, which is in turn defined to be exactly the same as *(begin() + n) and *(&*begin() + n) (when 0 <= n < ...
46
votes
10answers
1k views
How much is too much with C++0x auto keyword
I've been using the new auto keyword available in the C++0x standard for complicated templated types which is what I believe it was designed for. But I'm also using it for things like:
auto foo = ...
44
votes
10answers
25k views
Visual Studio support for new C / C++ standards?
I keep reading about C99 and C++11 and all these totally sweet things that are getting added to the language standard that might be nice to use someday. However, we currently languish in the land of ...
42
votes
6answers
1k views
what C++ idioms are deprecated in C++11
With the new standard, there are new ways of doing things, and many are nicer than the old ways, but the old way is still fine. It's also clear that the new standard doesn't officially deprecate very ...
40
votes
7answers
3k views
Can someone please explain move semantics to me?
I just finished listening to the Software Engineering talk radio podcast interview with Scott Meyers regarding C++0x. Most of the new features made sense to me and I am actually excited about C++0x ...
37
votes
5answers
1k views
Which kind of pointer do I use when?
Ok, so the last time I wrote C++ for a living, std::auto_ptr was all the std lib had available, and boost::shared_ptr was all the rage. I never really looked into the other smart pointer types boost ...
36
votes
6answers
9k views
What exactly is nullptr?
We now have C++11 with many new features. An interesting and confusing one (at least for me) is the new nullptr.
Well, no need anymore for the nasty macro NULL.
int* x = nullptr;
myclass* obj = ...
35
votes
4answers
803 views
Why use non-member begin and end functions in C++11?
Every standard container has a begin and end function for returning iterators for that container. However, C++11 has apparently introduced free functions called begin and end which call the begin and ...
35
votes
4answers
918 views
Why can't we have automatically deduced return types?
Recently I was working a friend who wanted to make C++ more Haskell-y, and we wanted a function that's basically like this:
auto sum(auto a, auto b) {
return a + b;
}
Apparently I can't use ...
33
votes
2answers
2k views
33
votes
2answers
721 views
Is the safe-bool idiom obsolete in C++11?
This answer of @R. Martinho Fernandes shows, that the safe-bool idiom is apperently deprecated in C++11, as it can be replaced by a simple
explicit operator bool() const;
according to the standard ...
31
votes
9answers
1k views
How to emulate C array initialization “int arr[] = { e1, e2, e3, … }” behaviour with std::array?
(Note: This question is about not having to specify the number of elements and still allow nested types to be directly initialized.)
This question discusses the uses left for a C array like int ...
30
votes
4answers
4k views
Can nullptr be emulated in gcc?
I saw that nullptr was implemented in Visual Studio 2010. I like the concept and want to start using it as soon as possible; however GCC does not support it yet. My code needs to run on both (but ...
29
votes
1answer
368 views
Is it valid for a lambda to, essentially, close over itself?
Is this lambda recursion valid?
#include <functional>
#include <iostream>
int main() {
std::function<int(int)> g = [&g](int k) {
return (k ? k * g(k-1) : 1);
};
...
29
votes
2answers
3k views
What are Aggregates and PODs and how/why are they special?
This FAQ is about Aggregates and PODs and covers the following material:
What are Aggregates?
What are PODs (Plain Old Data)?
How are they related?
How and why are they special?
What changes for ...
28
votes
4answers
812 views
What is the type of lambda when deduced with “auto” in C++11?
I had a perception that, type of a lambda is a function pointer. When I performed following test, I found it to be wrong (demo).
#define LAMBDA [] (int i) -> long { return 0; }
int main ()
{
...
27
votes
3answers
884 views
Advantages of using forward
In perfect forwarding, std::forward is used to convert the named rvalue references t1 and t2 to unnamed rvalue references. What is the purpose of doing that? How would that affect the called function ...
26
votes
2answers
367 views
Does anyone have information on using operator“”?
Bjarne Stroustrup gave a keynote presentation today for the Going Native 2012 conference. In his presentation, he discussed the issue of enforcing correct units. His elegant (IMHO) solution to this ...
26
votes
1answer
481 views
Partial specialization of variadic templates
Consider the following class template 'X' and its partial specializations.
template <class ...Types>
struct X {}; // #1
template <class T1>
struct X<T1> {}; ...
26
votes
6answers
831 views
Is there a range class in C++11 for use with range based for loops?
I found myself writing this just a bit ago:
template <long int T_begin, long int T_end>
class range_class {
public:
class iterator {
friend class range_class;
public:
long ...
25
votes
2answers
368 views
Does casting to a pointer to a template instantiate that template?
static_cast<the_template<int>*>(0) - does this instantiate the_template with type int?
The reason for asking is the following code, which will error at linking time with an undefined ...
25
votes
2answers
369 views
What are the similarities between the Java memory model and the C++11 memory model? [closed]
The new c++ standard introduces the notion of a memory model. There were already questions on SO about it, what does it mean, how does it change the way we write code in c++ and so on.
I'm interested ...
25
votes
1answer
219 views
Can I use template aliases as template template parameters?
Can I use template aliases as template template parameters?
template <template <typename> class> struct foo {};
template <typename T> using simple_ptr = std::unique_ptr<T>;
...
25
votes
14answers
2k views
How are you using C++11 today?
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 ...
24
votes
4answers
6k views
23
votes
2answers
1k views
Is it smart to replace boost::thread and boost::mutex with c++11 equivalents?
Motivation: reason why I'm considering it is that my genius project manager thinks that boost is another dependency and that it is horrible because "you depend on it"(I tried explaining the quality ...
23
votes
3answers
988 views
Double-Checked Lock Singleton in C++11
Is the following singleton implementation data-race free?
static std::atomic<Tp *> m_instance;
...
static Tp &
instance()
{
if (!m_instance.load(std::memory_order_relaxed))
{
...
23
votes
3answers
1k views
Deprecation of the static keyword… no more?
In C++ it is possible to use the static keyword within a translation unit to affect the visibility of a symbol (either variable or function declaration).
In n3092, this was deprecated:
Annex D.2 ...
23
votes
11answers
1k views
C++11: a new language?
Recently I started reading (just a bit) the current draft for the future C++11 standard.
There are lots of new features, some of them already available via Boost Libs. Of course, I'm pretty happy ...
23
votes
9answers
4k views
User-defined literals in C++11, a much needed addition or making C++ even more bloated?
C++11 introduces 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 ...
22
votes
6answers
828 views
Is it safe to #define NULL nullptr?
I have seen below macro in many topmost header files:
#define NULL 0 // C++03
In all over the code, NULL and 0 are used interchangeably. If I change it to.
#define NULL nullptr // C++11
Will ...
22
votes
3answers
467 views
What is “rvalue reference for *this”?
Came across a proposal called "rvalue reference for *this" in clang's C++11 status page.
I've read quite a bit about rvalue references and understood them, but I don't think I know about this. I also ...
22
votes
5answers
791 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++11 features in GCC 4.5 (and soon 4.6), but I would like to start ...
22
votes
3answers
904 views
C++11 lambda capture semantics
When I use [=] to indicate that I would like all local variables to be captured by value in a lambda, will that result in all local variables in the function being copied, or just all local variables ...
22
votes
3answers
735 views
Returning functions
I wonder if it's possible to write a function that returns a lambda function in C++11. Of course one problem is how to declare such function. Each lambda has a type, but that type is not expressible ...
22
votes
5answers
1k views
C++11 and the Lack of Polymorphic Lambdas - Why?
I've been reviewing the draft version of the C++11 standard. Specifically the section on lambdas, and am confused as to the reasoning for not introducing polymorphic lambdas.
For example, amongst the ...
22
votes
5answers
5k views
Can I use C++11 with Xcode?
I am considering the use of some C++11 features (like auto for instance) in some cross-platform projects (Windows+Mac). On Windows, Visual Studio supports parts of the upcoming C++11 standard that ...
22
votes
5answers
533 views
How useful would Inheriting Constructors be in C++?
As I sit in the C++ Standards committee meetings, they are discussing the pros and cons of dropping Inheriting Constructors since no compiler vendor has implemented it yet (the sense being users ...
21
votes
4answers
432 views
How do smart pointers choose between delete and delete[]?
Consider:
delete new std :: string [2];
delete [] new std :: string;
Everyone knows the first is an error. If the second wasn't an error, we wouldn't need two distinct operators.
Now consider:
...
21
votes
3answers
388 views
In C++, is it possible to get the return type of a function in order to declare a variable without calling that function?
int myfun()
{
return 42;
}
I know I can write
auto myvar = myfun();
but what if I just want to declare myvar (without using a common typedef)?
the_type_returned_by_myfun myvar;
What can be ...