I wasn't entirely satisfied by the answers, so I took a look at:
"More Effective C++", Scott Meyers. Item 19: "Understand the origin of
temporary Objects"
. Regarding Bruce Eckel's coverage of "Temporaries",
well, as I suspect and as Christian Rau directly points out, it's plain
wrong! Grrr! He's (Eckel's) using us as guinea pigs!! (it would be a
good book for newbies like me once he corrects all his mistakes)
Meyer: "True temporary objects in C++ are invisible - they don't
appear in your source code. They arise whenever a non-heap object is
created but not named. Such unnamed objects usually arise in one of
two situations: when implicit type conversions are applied to make
function calls succeed and when functions return objects."
"Consider first the case in which temporary objects are created to
make function calls succeed. This happens when the type of object
passed to a function is not the same as the type of the parameter to
which it is being bound."
"These conversions occur only when passing objects by value or when
passing to a reference-to-const parameter. They do not occur when
passing an object to a reference-to-non-const parameter."
"The second set of circumstances under which temporary objects are
created is when a function returns an object."
"Anytime you see a reference-to-const parameter, the possibility
exists that a temporary will be created to bind to that parameter.
Anytime you see a function returning an object, a temporary will be
created (and later destroyed)."
The other part of the answer is found in: "Meyer: Effective C++", in
the "Introduction":
"a copy constructor is used to initialize an object with a different
object of the same type:"
String s1; // call default constructor
String s2(s1); // call copy constructor
String s3 = s2; // call copy constructor
"Probably the most important use of the copy constructor is to define
what it means to pass and return objects by value."
Regarding my questions:
f5() = X(1) //what is happening?
Here a new object isn't being initialized, ergo this is not
initialization(copy constructor): it's an assignment (as
Matthieu M pointed out).
The temporaries are created because as per Meyer (top paragraphs),
both functions return values, so temporary objects are being created.
As Matthieu pointed out using pseudo-code, it becomes:
__0.operator=(__1)
and a bitwise copy takes place(done by the
compiler).
Regarding:
void f7(X& x);
f7(f5);
ergo, a temporary cannot be created (Meyer: top paragraphs).
If it had been declared: void f7(const X& x);
then a temporary would
have been created.
Regarding a temporary object being a constant:
Meyer says it (and Matthieu): "a temporary will be created to bind to that
parameter."
So a temporary is only bound to a constant reference and is itself not
a "const" object.
Regarding:
what is X(1)
?
Meyer, Item27, Effective C++ - 3e, he says:
"C-style casts look like this: (T)expression //cast expression to be
of type T
Function-style casts use this syntax: T(expression) //cast expression
to be of type T"
So X(1)
is a function-style cast. 1
the expression is being cast to
type X
.
And Meyer says it again:
"About the only time I use an old-style cast is when I want to call an
explicit constructor to pass an object to a function. For example:
class Widget {
public:
explicit Widget(int size);
...
};
void doSomeWork(const Widget& w);
doSomeWork(Widget(15)); //create Widget from int
//with function-style cast
doSomeWork(static_cast<Widget>(15));
Somehow, deliberate object creation doesn't "feel" like a cast, so I'd
probably use the function-style cast instead of the static_cast in
this case."