Dear friends, i'm concerned if i'm making a bad use of references in C++ In the following method GCC complains warning "reference to local variable ‘me’ returned"
MatrizEsparsa& MatrizEsparsa::operator+(MatrizEsparsa& outra){
MatrizEsparsa me(outra.linhas(),outra.colunas());
return me;
}
But, with the following changes the warning disappears:
MatrizEsparsa& MatrizEsparsa::operator+(MatrizEsparsa& outra){
MatrizEsparsa me(outra.linhas(),outra.colunas());
MatrizEsparsa &ref = me;
return ref;
}
Is the former method ( returning the 'ref' variable ) correct\acceptable ?
MatrizEsparsa&. @Lucas:operator+should usually be a free-standing function to allow implicit type casts. See Effective C++, Item 24. – Philipp Jul 6 '10 at 13:32outraand not onthis. Is this intended ? It seems weird that:a + b = f(b)instead ofa + b = f(a,b). – ereOn Jul 6 '10 at 13:43