Consider this code:
struct foo
{
int a;
};
foo q() { foo f; f.a =4; return f;}
int main()
{
foo i;
i.a = 5;
q() = i;
}
No compiler complains about it, even Clang. Why q() = ... line is correct?
|
Consider this code:
No compiler complains about it, even Clang. Why |
||||
|
No, the return value of a function is an l-value if and only if it is a reference (C++03). (5.2.2 [expr.call] / 10) If the type returned were a basic type then this would be a compile error. (5.17 [expr.ass] / 1) The reason that this works is that you are allowed to call member functions (even non- This is why it is sometimes recommended to return objects of class type as |
|||||||||||||||||||||
|
|
Because structs can be assigned to, and your This doesn't really do anything in this case thought because the struct falls out of scope afterwards and you don't keep a reference to it in the first place so you couldn't do anything with it anyway (in this specific code). This makes more sense (though still not really a "best practice")
|
|||||||||||||||||
|
|
One interesting application of this:
Here, Now, which computing novice said something about optimisations and evil...? ;-]. |
|||
|
|
q()returns a struct and then you assign a value to it. Whats wrong with that? – Andy Johnson May 24 '11 at 14:32