up vote 26 down vote favorite
9
share [g+] share [fb]

Why is it not allowed to get non-const reference to a temporary object, which function getx() returns? Clearly, this is prohibited by C++ Standard but I am interested in the purpose of such restriction, not a reference to the standard.

struct X
{
    X& ref() { return *this; }
};

X getx() { return X();}

void g(X & x) {}    

int f()
{
    const X& x = getx(); // OK
    X& x = getx(); // error
    X& x = getx().ref(); // OK
    g(getx()); //error
    g(getx().ref()); //OK
    return 0;
}
  1. It is clear that the lifetime of the object cannot be the cause, because constant reference to an object is not prohibited by C++ Standard.
  2. It is clear that the temporary object is not constant in the sample above, because calls to non-constant functions are permitted. For instance, ref() could modify the temporary object.
  3. In addition, ref() allows you to fool the compiler and get a link to this temporary object and that solves our problem.

In addition:

They say "assigning a temporary object to the const reference extends the lifetime of this object" and " Nothing is said about non-const references though". My additional question. Does following assignment extend the lifetime of temporary object?

X& x = getx().ref(); // OK
link|improve this question

73% accept rate
2  
I disagree with "the lifetime of the object cannot be the cause" part, just because it is stated in the standard, that assigning a temporary object to the const reference extends the lifetime of this object to the lifetime of the const reference. Nothing is said about non-const references though... – SadSido Oct 14 '09 at 11:22
Well, what the cause of that "Nothing is said about non-const references though...". It is a part of my question. Is there any sence in this? May be authors of Standard just forgot about non-const references and soon we'll see next Core Issue? – Alexey Malistov Oct 14 '09 at 11:32
Temporaries will bind to rvalue references introduced with C++0x. I don't think this was an oversight in the standard, since rvalue references will allow completely new functionality, which would have been impossible if lvalue references bound to non-temporaries and temporaries alike (in C++0x you will have means to tell them apart, and hence use move semantics, rather than copy semantics safely). – UncleBens Oct 14 '09 at 11:44
2  
GotW #88: A Candidate For the "Most Important const". herbsutter.spaces.live.com/blog/cns!2D4327CC297151BB!378.entry – fnieto - Fernando Nieto Oct 14 '09 at 14:15
1  
@Michael: VC binds rvalues to non-const references. They call this a feature, but really it's a bug. (Note that it's not a bug because it's inherently illogical, but because it was ruled out explicitly to prevent silly errors.) – sbi Oct 14 '09 at 16:53
show 4 more comments
feedback

8 Answers

up vote 10 down vote accepted

From this Visual C++ blog article about rvalue references:

... C++ doesn't want you to accidentally modify temporaries, but directly calling a non-const member function on a modifiable rvalue is explicit, so it's allowed ...

Basically, you shouldn't try to modify temporaries for the very reason that they are temporary objects and will die any moment now. The reason you are allowed to call non-const methods is that, well, you are welcome to do some "stupid" things as long as you know what you are doing and you are explicit about it (like, using reinterpret_cast). But if you bind a temporary to a non-const reference, you can keep passing it around "forever" just to have your manipulation of the object disappear, because somewhere along the way you completely forgot this was a temporary.

If I were you, I would rethink the design of my functions. Why is g() accepting reference, does it modify the parameter? If no, make it const reference, if yes, why do you try to pass temporary to it, don't you care it's a temporary you are modifying? Why is getx() returning temporary anyway? If you share with us your real scenario and what you are trying to accomplish, you may get some good suggestions on how to do it.

Going against the language and fooling the compiler rarely solves problems - usually it creates problems.


Edit: Addressing questions in comment: 1) X& x = getx().ref(); // OK when will x die? - I don't know and I don't care, because this is exactly what I mean by "going against the language". The language says "temporaries die at the end of the statement, unless they are bound to const reference, in which case they die when the reference goes out of scope". Applying that rule, it seems x is already dead at the beginning of the next statement, since it's not bound to const reference (the compiler doesn't know what ref() returns). This is just a guess however.

2) I stated the purpose clearly: you are not allowed to modify temporaries, because it just does not make sense (ignoring C++0x rvalue references). The question "then why am I allowed to call non-const members?" is a good one, but I don't have better answer than the one I already stated above.

3) Well, if I'm right about x in X& x = getx().ref(); dying at the end of the statement, the problems are obvious.

Anyway, based on your question and comments I don't think even these extra answers will satisfy you. Here is a final attempt/summary: The C++ committee decided it doesn't make sense to modify temporaries, therefore, they disallowed binding to non-const references. May be some compiler implementation or historic issues were also involved, I don't know. Then, some specific case emerged, and it was decided that against all odds, they will still allow direct modification through calling non-const method. But that's an exception - you are generally not allowed to modify temporaries. Yes, C++ is often that weird.

link|improve this answer
2  
@sbk: 1) Actually, the proper phrase is: "...at the end of the full expression...". A "full expression", I believe, is defined as one that's not a sub-expression of some other expression. Whether this always is the same as "the end of the statement", I'm not sure. – sbi Oct 14 '09 at 16:46
3  
@sbk: 2) Actually, you are allowed to modify rvalues (temporaries). It's forbidden for built-in types (int etc.), but it is allowed for user-defined types: (std::string("A")+"B").append("C"). – sbi Oct 14 '09 at 16:51
3  
@sbk: 3) The reason Stroustrup gives (in D&E) for disallowing the binding of rvalues to non-const references is that, if Alexey's g() would modify the object (which you'd expect from a function taking a non-const reference), it would modify an object that's going to die, so nobody could get at the modified value anyway. He says that this, most likely, is an error. – sbi Oct 14 '09 at 16:56
3  
I agree with sbi - this matter is not at all nitpicking. It's all the basis of move semantics that class type rvalues are best kept non-const. – Johannes Schaub - litb Oct 15 '09 at 10:23
1  
I think auto_ptr wouldn't work if we couldn't call non-const functions on class type rvalues. auto_ptr is based on operator auto_ptr_ref() being called on non-const rvalues. – Johannes Schaub - litb Oct 15 '09 at 22:08
show 11 more comments
feedback

In your code getx() returns a temporary object, a so-called "rvalue". You can copy rvalues into "lvalues" (essentially named objects, aka variables) or bind them to to const references (which will extend their life-time until the end of the reference's life). You cannot bind rvalues to non-const references.

This was a deliberate design decision in order to prevent users from accidentally modifying an object that is going to die at the end of the expression:

// this doesn't compile: 
g(getx()); // g() would modify an object without anyone being able to observe

If you want to do this, you will have to either make a local copy or of the object first or bind it to a const reference:

X x1 = getx();
const X& x1 = getx();
g(x1); // fine
g(x2); // fine, too

Note that the next C++ standard will include rvalue references. What you know as references is therefor becoming to be called "lvalue references". You will be allowed to bind rvalues to rvalue references and you can overload functions on "rvalue-ness":

void g(X&); // #1
void g(X&&); // #2, takes an rvalue reference

X x; 
g(x); // calls #1
g(getx()); // calls #2
g(X()); // calles #2, too

The idea behind rvalue references is that, since these objects are going to die anyway, you can take advantage of that knowledge and implement what's called "move semantics", a certain kind of optimization:

X::X(X&& rhs)
  : pimpl( rhs.pimpl ) // steal rhs' data...
{
  rhs.pimpl = NULL; // ...and leave it deconstructible, but empty
}


X x(getx()); // x will steal the rvalue's data, leaving the temporary object empty
link|improve this answer
feedback

Why would you ever want X& x = getx();? Just use X x = getx(); and rely on RVO.

link|improve this answer
2  
Becouse I want to call g(getx()) rather than g(getx().ref()) – Alexey Malistov Oct 14 '09 at 11:23
4  
@Alexey, that's not a real reason. If you do that, then you have a logical error soemwhere, because g is going to modify something which you cannot get your hands on anymore. – Johannes Schaub - litb Oct 14 '09 at 21:17
@JohannesSchaub-litb maybe he doesn't care. – curiousguy Dec 7 '11 at 8:18
"rely on RVO" except it is not called "RVO". – curiousguy Dec 7 '11 at 10:29
@curiousguy: That is a very accepted term for it. There is absolutely nothing wrong with referring to it as "RVO". – DeadMG Dec 7 '11 at 12:11
show 1 more comment
feedback

What you are showing is that operator chaining is allowed.

 X& x = getx().ref(); // OK

The expression is 'getx().ref();' and this is executed to completion before assignment to 'x'.

Note that getx() does not return a reference but a fully formed object into the local context. The object is temporary but it is not const, thus allowing you to call other methods to compute a value or have other side effects happen.

// It would allow things like this.
getPipeline().procInstr(1).procInstr(2).procInstr(3);

// or more commonly
std::cout << getManiplator() << 5;

Look at the end of this answer for a better example of this

You can not bind a temporary to a reference because doing so will generate a reference to an object that will be destroyed at the end of the expression thus leaving you with a dangling reference (which is untidy and the standard does not like untidy).

The value returned by ref() is a valid reference but the method does not pay any attention to the lifespan of the object it is returning (because it can not have that information within its context). You have basically just done the equivalent of:

x& = const_cast<x&>(getX());

The reason it is OK to do this with a const reference to a temporary object is that the standard extends the lifespan of the temporary to the lifespan of the reference so the temporary objects lifespan is extended beyond the end of the statement.

So the only remaining question is why does the standard not want to allow reference to temporaries to extend the life of the object beyond the end of the statement?

I believe it is because doing so would make the compiler very hard to get correct for temporary objects. It was done for const references to temporaries as this has limited usage and thus forced you to make a copy of the object to do anything useful but does provide some limited functionality.

Think of this situation:

int getI() { return 5;}
int x& = getI();

x++; // Note x is an alias to a variable. What variable are you updating.

Extending the lifespan of this temporary object is going to be very confusing.
While the following:

int const& y = getI();

Will give you code that it is intuitive to use and understand.

If you want to modify the value you should be returning the value to a variable. If you are trying to avoid the cost of copying the obejct back from the function (as it seems that the object is copy constructed back (technically it is)). Then don't bother the compiler is very good at 'Return Value Optimization'

link|improve this answer
2  
"So the only remaining question is why does the standard not want to allow reference to temporaries to extend the life of the object beyond the end of the statement?" That is it! You understand my question. But I disagree with your opinion. You say "make the compiler very hard" but it was done for const reference. You say in your sample "Note x is an alias to a variable. What variable are you updating." No problem. There is unique variable (temporary). Some temporary object (equals to 5) must be changed. – Alexey Malistov Oct 14 '09 at 14:17
@Martin: Dangling references aren't only untidy. They could lead to serious bugs when accessed later in the method! – Rüdiger Stevens Oct 14 '09 at 14:27
@Alexey: Note that the fact that binding it to a const reference enhances a temporary's lifetimes is an exception that's been added deliberately (TTBOMK in order to allow manual optimizations). There wasn't an exception added for non-const references, because binding a temporary to a non-const reference was seen to most likely be a programmer error. – sbi Oct 14 '09 at 17:02
@rstevens: That was kind of my point ;-) – Loki Astari Oct 14 '09 at 17:57
1  
@alexy: A reference to an invisable variable! Not that intuative. – Loki Astari Oct 14 '09 at 17:59
show 2 more comments
feedback

The evil workaround involves the 'mutable' keyword. Actually being evil is left as an exercise for the reader. Or see here: http://www.ddj.com/cpp/184403758

link|improve this answer
feedback

The main issue is that

g(getx()); //error

is a logical error: g is modifying the result of getx() but you don't have any chance to examine the modified object. If g didn't need to modify its parameter then it wouldn't have required an lvalue reference, it could have taken the parameter by value or by const reference.

const X& x = getx(); // OK

is valid because you sometimes need to reuse the result of an expression, and it's pretty clear that you're dealing with a temporary object.

However it is not possible to make

X& x = getx(); // error

valid without making g(getx()) valid, which is what the language designers were trying to avoid in the first place.

g(getx().ref()); //OK

is valid because methods only know about the const-ness of the this, they don't know if they are called on an lvalue or on an rvalue.

As always in C++, you have a workaround for this rule but you have to signal the compiler that you know what you're doing by being explicit:

g(const_cast<x&>(getX()));
link|improve this answer
feedback

Here's a very relevant post on this subject: http://cplusplus.co.il/2009/09/20/reference-to-temporary/

link|improve this answer
feedback

"It is clear that the temporary object is not constant in the sample above, because calls to non-constant functions are permitted. For instance, ref() could modify the temporary object."

In your example getX() does not return a const X so you are able to call ref() in much the same way as you could call X().ref(). You are returning a non const ref and so can call non const methods, what you can't do is assign the ref to a non const reference.

Along with SadSidos comment this makes your three points incorrect.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.