struct SomeStruct
{
int a;
int b;
};
SomeStruct someFn( int init )
{
SomeStruct ret = { init, init };
//...
return ret;
}
void someFn2( SomeStruct* pStruct )
{
// ..
}
int main( )
{
someFn2( &someFn(32) );
return 0;
}
|
|
|||||||||||||||||||||
|
|
|
No, it's not valid. From 5.2.2/10 [expr.call] "A function call is an lvalue if and only if the result type is a reference. From 5.3.1/2 [expr.unary.op] "The operand shall be an lvalue or a qualified-id".
|
||
|
|
|
|
$ g++ -Wall -o stuct struct.cc struct.cc: In function ‘int main()’: struct.cc:21: warning: taking address of temporary You should probably be doing:
|
||
|
|
|
|
No it's not. You can only use & on lvalues. SomeFn(32) is not a lvalue. Your main should be like this :
|
||
|
|
|
|
The usual idiom is to pass a const reference rather than a pointer if your function can accept temporaries.
outputs
IIRC, the set of 'non-broken' compilers does not include Visual C++ 2003 or earlier. An example of this idiom in the stl would be:
where the |
||
|
|
