vote up 3 vote down star
1

Could anyone explain with some examples when it is better to call functions by reference and when it is better to call by address?

flag

41% accept rate
Don't you mean by reference and by value ? – David Pierre Sep 27 '08 at 15:21

3 Answers

vote up 2 vote down check

Pass your arguments to function using reference whenever possible. Passing arguments by reference eliminate the chance of them being NULL. If you want it to be possible to pass NULL value to a function then use pointer.

link|flag
There's also boost::optional, which allows passing an invalid value, without having to use pointers or a special value denoting Empty. – efotinis Sep 27 '08 at 15:35
vote up 3 vote down

This has already been discussed. See Pointer vs. Reference.

link|flag
vote up 2 vote down

One nice convention is to:

  • Pass objects by pointer whenever they may be manipulated (side-effect or as output) by the function.
  • Pass all other objects by const reference.

This makes it very clear to the caller, with minimal documentation and zero performance cost, which parameters are const or not.

You can apply this to primitive types as well, but it's debatable as to whether or not you need to use const references for non-output parameters, since they are clearly pass-by-value and cannot act as output of the function in any way (for direct types - not pointers/references - of course).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.