Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Java, all variables containing proper objects are actually references (i.e. pointers). Therefore, method calls with these objects as arguments are always "by reference". Calling a method which modifies the state of the object also affects the original object (on the caller side).

C++ is different: Here arguments can be passed by value or passed by reference. Calling a mutator method on an object which was passed by value leaves the original object unaffected. (I suppose call by value creates a local copy of the object).

So my first response to this - coming from Java to C++ - is: ALWAYS use pointers when using objects as arguments. This gives me the behavior I have come to expect from Java.

However, one could also use "call by value" in case one does not need to modify the object in the method body. Are there reasons why one would want to do this?

share|improve this question
If I'm not mistaken it is not a straightforward thing to pass a reference type object by value in any environment. Usually any reference type is passed by ref. What if your object is a singleton? It is impossible to send it by value by design. – Oybek Apr 22 '12 at 15:44
2  
Not many. Calling a massive, lengthy, complex, contention-multiplying copy ctor just because it's less typing is part of the fun of C++. :(( – Martin James Apr 22 '12 at 15:46
1  
Note that C++ and Java disagree on what a reference is (a Java reference is basically a C++ pointer without pointer arithmetic) - and what you call "pass by reference" is just pass-by-value, with the values being object references. C++ on the other hand has proper pass-by-reference, which allows fun like void swap(T &a, T &b) which isn't possible in Java. – delnan Apr 22 '12 at 15:50
@Oybek: In C++, there's no such thing as a "reference type object"; there are objects, and there are references (and pointers) to objects. But you're correct that objects can only be passed by value if they're copyable. – Mike Seymour Apr 22 '12 at 15:56

8 Answers

up vote 7 down vote accepted

ALWAYS use pointers when using objects as arguments

No, in C++ always pass by reference, unless your function can be called with nullptr as a valid argument. If the function does not need to modify the argument, pass by const reference.

Passing arguments by value has several uses.

If your function needs to create a copy of the argument it is better to create this copy by passing by value rather than creating a copy within the function. For instance:

void foo( widget const& w )
{
  widget temp( w );
  // do something with temp
}

Instead use

void foo( widget w )  // copy is made here
{
  // operate on w itself
}

Doing this also has the benefit of allowing the compiler to move widget if possible, which is generally more efficient than creating copies.

share|improve this answer
I would like to know more about "move" semantics Praetorian, especially in the context of something like this. From what I read, the advantage is "the operation not only forgoes the expense of a deep copy, but is safe and invisible.". To which objects does this apply? It's container specific, presumably? – Robinson Apr 22 '12 at 16:05
1  
@Robinson Here's an excellent answer describing move semantics – Praetorian Apr 22 '12 at 16:09

You're wrong in that you should pass by pointer. If you want to pass by reference, well... simply pass by reference:

void foo(int& x)
{
   x = 3;
}

int main()
{
   int a = 0;
   foo(a);
   assert( a == 3 );
}

Also, note that passing by value guarantees that the your variable can't be changed inside the called context. Although so would passing by const reference...

share|improve this answer
2  
That also works the other way: references cannot be null. That situation is the only reason I'd have for choosing a pointer over a reference. – chris Apr 22 '12 at 15:51
2  
@AdamLiss I beg to differ. The signature clearly says "this value can be modified" as much as the pointer equivalent does. – juanchopanza Apr 22 '12 at 15:54
3  
@Adam: Using address-of to express mutability is an artifact of C design APIs. The C++ way is to use reference and const reference. I am actively asking my peers in every code review I see they use * to use & unless is an optional argument that can accept a NULL – Remus Rusanu Apr 22 '12 at 15:56
3  
@AdamLiss No, you're not asking for any trouble, unless you're working with a developer such as yourself who draws such a great distinction between a mutable reference and a pointer. foo(int&) clearly indicates that foo may modify the argument in the caller's context. The only thing foo(int*) tells me is that I can call foo with nullptr as the argument, and the function should handle that. However, if the function doesn't check for that you've got a buggy program on your hands. – Praetorian Apr 22 '12 at 15:58
2  
@KeithRandall how would you call a function without knowing its prototype? – Luchian Grigore Apr 22 '12 at 16:22
show 25 more comments

If you pass objects to a function by value, that function is free to use those objects as "working" variables without affecting the caller.

share|improve this answer
Doesn't really compensate for the copy ctor overhead, unless class is trivial. – Martin James Apr 22 '12 at 15:48
1  
@MartinJames the alternative would be to pass by const reference and make a temporary copy anyway. Plus, C++11 does away with a lot of unnecessary copying. – juanchopanza Apr 22 '12 at 15:51
What is the point of modifying members in some copy? The modified data is not going anywhere and will soon be destroyed anyway. I don't really get the 'working variables' argument. – Martin James Apr 22 '12 at 16:06

You normally pass by value because something is a value and should act like a value. In many cases passing by const reference is close enough to the same to be worth considering. In other cases, it's not.

Passing by value can also be an optimization. At least IMO, this more or less secondary, but it can be important anyway (especially in choosing between passing by const reference and passing a real value.

IMO, the real question should be in the opposite direction: why should the compiler pass a reference when you've clearly told it to pass a value? The answer is "premature optimization". The designers of Java (to mention your example, though it's hardly unique in this) decided that they knew better than to let the compiler do what it was told. Since passing a large object by value can be slow and might be a mistake, they decided to not let it happen at all, even though it can be fast and may well be exactly what was intended.

share|improve this answer

in Java, a reference is a garbage-collected "smart pointer".

C++ also uses the concept of smart pointers, which are in the <memory> library, called unique_ptr and shared_ptr. shared_ptr is reference-counted so can be used in the same way as Java References. unique_ptr is similar, except is noncopyable and a little more lightweight. The benefit of both is never ever needing to use the delete keyword, and being able to rely on "pointers" which are protected by exceptions.

C++ also supports the concept of a reference - which is usually a good choice for passing objects around (And even better is reference-to-const). References in C++ are bound to the type of object which is passed, so you need to specify (using the reference symbol &) in the function signature

#include <string>

void foo(std::string& bar)
{
    bar = "world";
}

void foo2(const std::string& bar)
{
    //passed by reference, but not modifyable.
}

int main()
{
    std::string str = "hello";
    foo(str);
    foo2(str);
}

As for "raw" pointers - you can nearly always avoid them by using either a smart pointer, a reference, an iterator, or pass-by-value. plain ordinary pointers come with a mixed bag of "gotchas" which C++ inherited from the C language - if you've got a fairly recent compiler you should never really need to use them at all (unless you're going to be doing things like re-inventing the wheel for learning purposes with memory management, data structures, etc.)

share|improve this answer
What mixed bag? Mine has only one item in it - you must manage object lifetime yourself. Smart pointers have their own issues, certainly with multithreaded code that passes pointers to system calls, eg. for later callback or for inter-thread comms. Having such an object destroyed because it's gone out of scope in the calling function will generate an AV/segfault, often somewhere that seems unrelated to the point where the error was generated. 'Smart' pointers are OK for single-threaded 'hourglass' apps. Anything complex and you quickly realize that 'smart' can mean 'obfuscated lifetime'. – Martin James Apr 22 '12 at 22:28
A Java reference is neither garbage collected nor smart. It is most akin to a Pascal pointer. The objects so referenced are subject to GC. – EJP Apr 22 '12 at 23:55

When passing by reference there is an inherit danger that you could inadvertently change the value passed to the method, inside the method. After the method call you could assume the method didn't change the object, when in fact it did.

Passing by value has the negative aspect of extra memory required (and possibly a slight performance overhead) because you make a copy of the object you are passing in, but with the benefit that you can be sure your object passed into the method will not be modified inside the method.

share|improve this answer
'you could assume the method didn't change the object, when in fact it did' - this is jsut a mindset issue. If you have access to an object and change some member data ins ome way, then you are changing member data on the object! Changing member data on a copy usually means you are wasting your time since your changed values are about to be destroyed. If developers would make the much more reasonable assumption that they only ever get the one object instance and there are no copies, they should be fine. – Martin James Apr 22 '12 at 17:12

I think you should consider the variable types in your function signature as the contract to the caller. So if you declare you function as:

void foo( int a );

then you are saying i will copy your passed in value do whatever I like and it won't be modified.

If you declare like:

void foo (int* a);

then I may modify what a points to or indeed modify the pointer

so the semantic difference is that you are declaring what the contract of your function may do, with pointers and references (without const declared on the reference or the object that the pointer is pointing to) you may modify the variable.

References are preferred in C++ as it is clearer what you are intending and you avoid the c style pointer to pointer function signatures that are necessary when passing pointers to functions where you want to modify what the pointer is pointing to, which leads to errors and head scratching before you realise what went wrong.

Pointers though still are very useful as paremeters, especially if you need to test if the pointer to the object is null or not, something that is not possible to do using references.

share|improve this answer
References are not preferred by everyone! – Martin James Apr 22 '12 at 17:25
@MartinJames fair point, will amend my advice, from my perspective we pass smart pointers everywhere and always need to test whether the pointer is null or not, something you cannot do using a reference. – EdChum Apr 22 '12 at 19:02
Even smart pointers can have issues. An object pointer posted off on a system call like Windows.PostMessage(), (something I do often), must not be destroyed just because it's gone out of scope in the calling method. This issue can lead to all sorts of shenanigans with refCounted types like smartPointers and interface types. 'Dumb' pointers are, of course, just fine. – Martin James Apr 22 '12 at 22:18
@MartinJames another good point but I would not want to pass a ptr to an object where it could get destroyed in the manner you mention, typically your object would be a ptr copy of a resource whose lifetime is not tied to the lifetime of the message to another window unless that is what you wanted but I take your point it is another thing to consider for the correct type of ptr to use. – EdChum Apr 22 '12 at 22:23

It's helpfull to avoid side-effects. If you program need such side-effect use call by reference.

share|improve this answer
1  
you can avoid side-effects by passing by const reference. – juanchopanza Apr 22 '12 at 15:44
Yes yes, sure, and it's more efficient (also if modern compiler often turn automatically to pass by const reference). I was just explaining the main difference with passing by value. – Aslan986 Apr 22 '12 at 15:48
What I am saying is that the side-effects argument isn't the important one, because you can get it with const reference and avoid a copy. – juanchopanza Apr 22 '12 at 16:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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