Passing return as reference to another function



 DEVELOP > c-Plus-Plus > Passing return as reference to another function

LINK TO THIS PAGE  


rating :  0   |  0


  Page 1 of 1

1

 
Topic: DEVELOP > c-Plus-Plus
User: "Ryan Mitchley"
Date: 16 Oct 2003 06:57:46 AM
Object: Passing return as reference to another function
Hi all
I have the functions
friend CComplexMatrixTemp eye(const size_t nN);
and
friend CComplexMatrixTemp & chol(CComplexMatrixTemp &z);
I would like create expressions of the form CComplexMatrixTemp x =
chol(eye(6)), similar to MATLAB syntax.
GCC doesn't seem like the fact that chol(...) wants to take a reference to a
returned temporary. Is there anyway around this without losing the nice
notation? I could obviously do something like:
CComplexMatrixTemp temp = eye(80);
CComplexMatrixTemp x = chol(temp);
but this is definitely not as pretty!
Copying a matrix object is an expensive operation, hence the desire to use
references. The CComplexMatrixTemp class is formed in intermediate
expressions where storage space may be reused (I also have a CComplexMatrix
class which is used directly by the application programmer).
Thanks for any help!
Ryan
.

User: "Victor Bazarov"

Title: Re: Passing return as reference to another function 16 Oct 2003 08:03:22 AM
"Ryan Mitchley" <rmitchle@removethis.worldonline.co.za> wrote...

I have the functions
friend CComplexMatrixTemp eye(const size_t nN);

and
friend CComplexMatrixTemp & chol(CComplexMatrixTemp &z);

I would like create expressions of the form CComplexMatrixTemp x =
chol(eye(6)), similar to MATLAB syntax.

GCC doesn't seem like the fact that chol(...) wants to take a reference to

a

returned temporary. Is there anyway around this without losing the nice
notation? I could obviously do something like:
CComplexMatrixTemp temp = eye(80);
CComplexMatrixTemp x = chol(temp);
but this is definitely not as pretty!

Copying a matrix object is an expensive operation, hence the desire to use
references. The CComplexMatrixTemp class is formed in intermediate
expressions where storage space may be reused (I also have a

CComplexMatrix

class which is used directly by the application programmer).

There is no way around the rule that a non-const reference cannot be
bound to a temporary. That said, there is no way for you to return
even a const reference to a local object (I assume 'eye' returns some
kind of automatic object it creates).
I think there are two solutions for you. Either return an object (as
you already do), make 'chol' accept a reference to a _constant_ object
CComplexMatrixTemp chol(CComplexMatrixTemp const &);
(and, apparently make it create another object too), _or_ you look over
the "MOJO" technique proposed by Andrei Alexandrescu and discussed in
several places, comp.lang.c++.moderated being probably the most
accessible to you.
Essentially, you might get away with inventing your own ref-counting
mechanism for matrix contents. Instead of the calculation data make
your matrix object store a pointer to them. Only when an matrix is
to change should it produce another calculation data and point to it.
This is called "copy on write". That way when you just return objects
from a function, the calculation data don't have to be reallocated.
All in all, you really shouldn't concern yourself with copying a matrix
object _until_ you see that you compiler cannot optimise it for you and
until you discover that it really slows everything down too much. There
is a significant optimisation allowed by the C++ Standard: return value
optimisation (RVO), which should be performed by most if not all modern
compilers.
Victor
.
User: "Ryan Mitchley"

Title: Re: Passing return as reference to another function 16 Oct 2003 10:37:24 AM
VB> I think there are two solutions for you. Either return an object (as
VB> you already do), make 'chol' accept a reference to a _constant_ object
VB> CComplexMatrixTemp chol(CComplexMatrixTemp const &);
VB> (and, apparently make it create another object too), _or_ you look over
VB> the "MOJO" technique proposed by Andrei Alexandrescu and discussed in
VB> several places, comp.lang.c++.moderated being probably the most
VB> accessible to you.
Thanks for the detailed reply, Victor. I've actually come across an article
on the MOJO thing before. Unfortunately, I ran out of concentration about
half way through :-) Maybe it's time to look at it again . . .
VB> All in all, you really shouldn't concern yourself with copying a matrix
VB> object _until_ you see that you compiler cannot optimise it for you and
VB> until you discover that it really slows everything down too much.
VB> There is a significant optimisation allowed by the C++ Standard: return
VB> value optimisation (RVO), which should be performed by most if not all
VB> modern compilers.
Okay. I'm just not too sure how I'll tell when it's being done, and when
not.
Thanks again!
Ryan
.



  Page 1 of 1

1

 


Related Articles
Override virtual function w/ Object (not Reference) return?
good code to return const reference to function local object?
cast to non-const reference of a function's return object
const class reference return from function, what does const do?
Reference lets a function to return a variable . But strange things happen :(:(
What should function returning a reference return on failure?
Function return string
return type function specifier
Find function why is the return value wrong?
lifetime of temporary object from function return & optimization
Construction of function return value
Re: Enable functions in the derived class with the same function name but different return type?
Cpp function to return a string
Error in Function that use and return Array
is it a good style to make a function return the referrence of one of its input parameters?
 

NEWER

pg.1232     pg.940     pg.716     pg.544     pg.412     pg.311     pg.234     pg.175     pg.130     pg.96     pg.70     pg.50     pg.35     pg.24     pg.16     pg.10     pg.6     pg.3     pg.1

OLDER