views:

124

answers:

6

Possible Duplicates:
When pass-by-pointer is preferred to pass-by-reference in C++?
Are there benefits of passing by pointer over passing by reference in C++?
How to pass objects to functions in C++?

Hi all, I'm working to develop a large object oriented c++ application framework as part of my chemical engineering graduate research.

I find that many of my functions take pointers to custom objects or STL objects. I find that in terms of writing code, this makes it harder to access functions or variables stored within.

Aside from simplicity, though, is there any advantages/disadvantages to passing by reference v. passing by pointer?

If there is an advantage to one over the other, I'll probably look to refactor my code to uniformly use whatever approach is optimal. If there isn't I may still refactor to consistently use pass by reference for readability (i.e. not having to dereference)

Again I want to make the best decision as my framework is already 40+ files large, so I want to implement as uniform structure as I can, as early as I can, and with whatever the optimal method is.

Thanks in advance!

+2  A: 

Prefer pass by reference. If for nothing else I do it because a reference simply can't be NULL. It puts an end to so many stupid bugs, debates, contract checks, memory responsibility questions, etc ...

JaredPar
+2  A: 

FYI this was asked in a slightly diff way earlier today:

http://stackoverflow.com/questions/3613065/when-to-pass-by-reference-and-when-to-pass-by-pointer-in-c/3613109#3613109

Canonical advice is "pass by ref to const unless a v good reason for another choice".

Steve Townsend
+4  A: 

The main difference is that a reference cannot be NULL (at least not without some malicious programming). For syntactical sugar and when an argument is required, I'd pass by reference. If I had a situation where the argument were optional, I'd pass by pointer.

There are always exceptions. If it conforms to the current style, or due to things I have to do with it, it may be more convenient to have it as a pointer.

krousey
+1. Personally, I use references when the object is not optional, and pointers otherwise. That's the convention that is being used at my company as well.
Shautieh
+1 for `at least not without some malicious programming`
phimuemue
A: 

If your choice is pointers vs. references, use references. They have all the advantages of pointers without the danger of dereferencing an uninitialized pointer.

And don't worry too much about implementing a uniform approach early-- in this case it really isn't difficult to go back and forth between the two (one function at a time) even when the code base is large.

Beta
A: 

Personally I like passing by pointer because it offers some level of consistency in my code. I automatically know that my object Foo is a pointer. The same would apply with a reference so be sure to pick one and stick with it.

mj_
A: 

While I like references, there are a few common cases where you can't use them:

  • You want to store an object reference/pointer in a member variable but don't want to require that object in your class constructor
  • You want to store an object reference/pointer in a member variable and change the instance at runtime
  • You want make an object parameter to a method or function optional

In my view, having a mix of references and pointers is pretty ugly, so I prefer pointers.

Peter Ruderman