开发者

Pass by Reference v. Pass by Pointer -- Merits? [duplicate]

This question already has answers here: Closed 12 years ago.

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开发者_C百科 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!


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.


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 ...


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

When to pass by reference and when to pass by pointer in C++?

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


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.


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.


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜