Is there a difference in the number of temp objects created between these 2 functions?

string foo1() {
    return "";
} 

string foo2() {
    string s = "";
    return s;
}

This is a homework question so please assume there is no compiler optimization.

link|improve this question

80% accept rate
Since this is a homework question, shouldn't you resolve this on your own? – David Rodríguez - dribeas Jun 12 '11 at 15:36
7  
Instead of using string, you could try it with a class of your own, which would inform you every time one got created or destroyed. – Beta Jun 12 '11 at 15:38
2  
@Beta: That would not tell you if the object was temporary or not. – DeadMG Jun 12 '11 at 16:08
@DeadMG: Isn't a temporary object just an unnamed object on the stack? If you know what objects are being created, and you can see which ones have names, can't you just subtract? – Beta Jun 12 '11 at 16:58
feedback

3 Answers

up vote 4 down vote accepted

No- only one temporary is created. The object on the stack of the function is not a temporary, it is an lvalue. The string literal is also an lvalue. Both involve exactly the same process- returning a string constructed from an lvalue.

link|improve this answer
feedback

Yes. Without any optimization, namely, NRVO (named return-value optimization), the second code will produce 2 temporaries while the first will produce one.

link|improve this answer
Something with a name is not a temporary. And the code without NRVO may produce 2 temporaries, but it may also only produce one. – nbt Jun 12 '11 at 15:40
@Xeo The compiler does not have to create a temporary for the constructor call, and probably won't. – nbt Jun 12 '11 at 15:41
@Neil: The 3 was a typo while editing. Also, why may code without NRVO only produce 1 copy? – Xeo Jun 12 '11 at 15:42
1  
@rubenvb: You're wrong. It's perfectly Standard-legal to elide copy (and move) construction, even if the copy constructor has side effects. This is explicitly stated in the Standard. – DeadMG Jun 12 '11 at 15:59
1  
@rubenvb: Before move semantics, then copy elision was the only way of automatically removing needless and expensive copies. Much performance has been saved, and even observer-dependent classes like shared_ptr don't have their necessary semantics violated. It doesn't really break any code that we would actually want to write and provides significant optimization., – DeadMG Jun 12 '11 at 16:15
show 9 more comments
feedback

No difference. In both cases a new string object is created (1 - implicitly, 2 - explicitly).


Both examples do the following: 1. Push pointer of the empty string to the stack (or write it to the register). 2. Create new instance of string class (with specified string). 3. Write pointer of newly created instance to EAX (as the result)


My apologies, this is C++ question whereas I thought about C# :)

That means the instance of string class will be duplicated (not returned by pointer). Anyway, both examples create only one instance of string class (1 - implicitly, 2 - explicitly), then all bytes of this instance (temporary object) will be pushed to the stack as the result.

The answer: no difference, only one temporary object (provided no compiler optimization applied).

NOTE: in both cases compiler allocates the same number of bytes in the stack to store the instance of string class, and the "" (empty string) is already loded to the memory (no allocation). The only difference is that 1st example creates an instance of string class implicitly.

link|improve this answer
2  
That doesn't answer the question. – nbt Jun 12 '11 at 15:36
2  
Because the bytes will not be pushed, the copy constructor will be invoked. The difference is very significant. – DeadMG Jun 12 '11 at 16:10
feedback

Your Answer

 
or
required, but never shown

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