Possible Duplicate:
Understanding return value optimization and returning temporaries - C++
let Integer be some class with i as it's member.left and right are passed as arguments to a function call and are of type Integer
Now as given in Bruce Eckel.
Code 1:
return Integer(left.i+right.i);
Code 2:
Integer tmp(left.i+right.i);
return tmp;
code 1 says make a temporary integer object and return it and it is different from creating a named local variable and returning it,which is a general misconception.
In Code 1(called as returning a temporary approach):
The compiler knows that you have no other need for the object it's creating then to return it.The compiler takes advantage of this by building the object directly into the location of the outside return value. This requires only a single ordinary constructor call(no copy-constructor) and no destructor is required as no local object was created.
While 3 things will happen in code 2:
a) tmp object is created including its constructor call
b) the copy-constructor copies the tmp to the location of the outside return value.
c) the destructor is called for tmp at the end of scope.
In code 1 what does this mean : building the object directly into the location of the outside return value ?
also why copy constructor will not be called in code 1 ?
Also I didn't understand what does step b in code 2 is doing ? i.e.the copy-constructor copies the tmp to the location of the outside return value.

Integerbelongs to Java. – iammilind Jan 4 '12 at 8:25