I always thought Java was pass by reference, however I've seen a couple of blog posts (e.g. this blog) that claim it's not. I don't think I understand the distinction they're making. Could someone explain it please?
|
feedback
|
protected by Nick Craver♦ Jun 24 '11 at 18:08
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.
|
Java is always pass-by-value. The difficult thing can be to understand that Java passes objects as references passed by value. It goes like this:
In this example aDog.name will still be "Max". "d" is not overwritten in the function as the object reference is passed by value. Likewise:
| |||||||||||||||||||||
feedback
|
|
Hey there -- just noticed you referenced my article ;) The Java Spec says that everything in Java is pass-by-value. There is no such thing as "pass-by-reference" in Java. The key to understanding this is that something like
is not a Dog; it's actually a pointer to a Dog. What that means, is when you have
you're essentially passing the address of the created (I say essentially b/c Java pointers aren't direct addresses, but it's easiest to think of them that way) Suppose the if the Method were defined as
let's look at what's happening.
Now let's think about what happens outside the method: Did There's the key. Keeping in mind that It's perfectly valid to follow an address and change what's at the end of it; that does not change the variable, however. Java works exactly like C. You can assign a pointer, pass the pointer to a method, follow the pointer in the method and change the data that was pointed to. However, you cannot change where that pointer points. In C++, Ada, Pascal and other languages that support pass-by-reference, you can actually change the variable that was passed. If Java had pass-by-reference semantics, the Think of reference parameters as being aliases for the variable passed in. When that alias is assigned, so is the variable that was passed in. Does that help? (I'll have to add this as an addendum to my article...) | |||||||||||||||||||||
feedback
|
|
Java passes references by value. So you can't change the reference that gets passed in. | |||||||||||||||
feedback
|
|
This will give you some insights of how Java really works to the point that in your next discussion about Java passing by reference or passing by value you'll just smile :-) Step one please erase from your mind that word that starts with 'p' "_ _ _ _ _ _ _", especially if you come from other programming languages. Java and 'p' cannot be written in the same book, forum, or even txt. Step two remember that when you pass an Object into a method you're passing the Object reference and not the Object itself.
Now think of what an Object's reference/variable does/is:
In the following (please don't try to compile/execute this...):
What happens?
A picture is worth a thousand words:
Note that the anotherReferenceToTheSamePersonObject arrows is directed towards the Object and not towards the variable person! If you didn't get it then just trust me and remember that it's better to say that Java is pass by value. Well, pass by reference value. Oh well, even better is pass-by-copy-of-the-variable-value! ;) Now feel free to hate me but note that given this there is no difference between passing primitive data types and Objects when talking about method arguments. You always pass a copy of the bits of the value of the reference!
Of course you can cut it short and just say that Java is pass-by-value! | |||||||||||||||
feedback
|
|
For primitives (int, long etc) it is pass by value the actual value (e.g. 3) For Objects you pass by value the reference to the object. So if you have | |||||||
feedback
|
|
The crux of the matter is that the word reference in the expression "pass by reference" means something completely different from the usual mening of the word reference in Java. Usually in Java reference means a a reference to an object. But the technical terms pass by reference/value from programming language theory is talking about a reference to the memory cell holding the variable, which is someting completely different. | |||||||
feedback
|
|
I can't believe that nobody mentioned Barbara Liskov yet. When she designed CLU in 1974, she ran into this same terminology problem, and she invented the term call by sharing (also known as call by object-sharing and call by object) for this specific case of "call by value where the value is a reference". | |||||||||||
feedback
|
|
The distinction, or perhaps just the way I remember as I used to be under the same impression as the original poster is this: Java is always pass by value. All Objects(in java, anything except for primitives) in java are references. These references are passed by value. | |||
|
feedback
|
|
As far as I know, Java only knows call by value. This means for primitive datatypes you will work with an copy and for objects you will work with an copy of the reference to the objects. However I think there are some pitfalls; for example, this will not work:
This will populate Hello World and not World Hello because in the swap function you use copys which have no impact on the references in the main. But if your objects are not immutable you can change it for example:
This will populate Hello World on the command line. If you change StringBuffer into String it will produce just Hello because String is immutable. For example:
However you could make a wrapper for String like this which would make it able to use it with Strings:
edit: i believe this is also the reason to use StringBuffer when it comes to "adding" two Strings because you can modifie the original object which u can't with immutable objects like String is. | ||||
|
feedback
|
|
I have created a thread devoted to these kind of questions for any programming languages here. Java is also mentioned. Here is the short summary:
| |||
|
feedback
|
|
A few corrections to some posts. C does NOT support pass by reference. It is ALWAYS pass by value. C++ does support pass by reference, but is not the default and is quite dangerous. It doesn't matter what the value is in Java: primitive or address(roughly) of object, it is ALWAYS passed by value. If a Java object "behaves" like it is being passed by reference, that is a property of mutability and has absolutely nothing to do with passing mechanisms. I am not sure why this is so confusing, perhaps because so many Java "programmers" are not formally trained, and thus do not understand what is really going on in memory? | |||||||
feedback
|
|
To make a long story short, java objects have some very peculiar properties. In general, java has primitive types ( Does this sound strange and confusing? Let's consider how C implements pass by reference and pass by value. In C the default convention is pass by value. Take this to C++, and we have references. References are basically (in this context) syntactic sugar that hide the pointer part of the equation: | |||
|
feedback
|
|
You can never pass by reference in Java, and one of the ways that is obvious is when you want to return more than one value from a method call. Consider the following bit of code in C++:
Sometimes you want to use the same pattern in Java, but you can't; at least not directly. Instead you could do something like this:
As was explained in previous answers, in Java you're passing a pointer to the array as a value into | |||
|
feedback
|
|
Just to show the contrast, compare the following c++ and java snippets: In C++: Note: Bad code - memory leaks! But it demonstrates the point.
In java,
Java only has the two types of passing: by value for built-in types, and by value of the pointer for object types. | ||||
feedback
|
|
Have a look at this code. This code will not throw
If Java is pass by reference then it should have thrown | |||||
feedback
|
|
Basically, reassigning Object parameters doesn't affect the argument, e.g.,
will print out | |||
|
feedback
|
|
As many people mentioned it before, Java is always pass-by-value Here is another example that will help you understand the difference (the classic swap example):
Prints:
This happens because iA and iB are new local reference variables that have the same value of the passed references (they point to a and b respectively). So, trying to change the references of iA or iB will only change in the local scope and not outside of this method. | |||
|
feedback
|
|
I always think of it as "pass by copy". It is a copy of the value be it primitive or reference. If it is a primitive it is a copy of the bits that are the value and if it is an Object it is a copy of the reference.
output of java PassByCopy:
Primitive wrapper classes and Strings are immutable so any example using those types will not work the same as other types/objects. | ||||
|
feedback
|
|
You can look at http://java.sun.com/docs/books/tutorial/java/javaOO/arguments.html Passing Reference Data Type Arguments Reference data type parameters, such as objects, are also passed into methods by value. This means that when the method returns, the passed-in reference still references the same object as before. However, the values of the object's fields can be changed in the method, if they have the proper access level. For example, consider a method in an arbitrary class that moves Circle objects:
Let the method be invoked with these arguments:
Inside the method, circle initially refers to myCircle. The method changes the x and y coordinates of the object that circle references (i.e., myCircle) by 23 and 56, respectively. These changes will persist when the method returns. Then circle is assigned a reference to a new Circle object with x = y = 0. This reassignment has no permanence, however, because the reference was passed in by value and cannot change. Within the method, the object pointed to by circle has changed, but, when the method returns, myCircle still references the same Circle object as before the method was called. | |||
|
feedback
|
|
Java copies the reference by value. So if you change it to something else (e.g, using | |||
|
feedback
|
|
If you create a method which receives an int for example and change the value within the method, the caller will not see the value you've just assigned.
However, you can still an object which encapsulate a primitive value
So Java is not by reference when dealing with first-level objects (like primitives) but for real objects, you can actually change it's internal values (using getter/setter) and the caller's object will be affected. | |||
|
feedback
|
|
Pass by reference, as the blog you referenced seems to discuss it, I believe refers to languages that will not evaluate arguments to function unstil the argumants are actually used. Java eagerly evaluates the arguments to its functions (aka methods), though. For example, suppose you have a method like this:
And you want to call it like this:
Since both arguments in this call are themselves calls to other methods, Java will first evaluate them, so that it knows what arguments to give to add(). In other words, it determines what values to pass to add(). In pass by value, the arguments are always evaluated, even if they don't need to be. If Java used pass by reference, and getSecondArg() evaluated to 0, then getFirstArg would never be evaluated. It's reference would just be returned as the result of add(). Does that make it more clear, or did I just manage to muddy the waters some more? | |||
|
feedback
|
|
it's a bit hard to understand, but java always copies the value - the point is, normally the value is a reference. therefore you end up with the same object without thinking about it... | |||
|
feedback
|
|
Here is how to make pass by reference work slightly.
| ||||
|
feedback
|
|
In my opinion, "pass by value" is a terrible way to singularly describe two similar but different events. I guess they should have asked me first. With primitives we are passing the actual value of the primitive into the method (or constructor), be it the integer "5", the character "c", or what have you. That actual value then becomes its own local primitive. But with objects, all we are doing is giving the same object an additional reference (a local reference), so that we now have two references pointing to the same object. I hope this simple explanation helps. | |||||
feedback
|
|
Java does manipulate objects by reference, and all object variables are references. However, Java doesn't pass method arguments by reference; it passes them by value. Take the
When Pass by Reference means the passing the address itself rather than passing the value and pass by value means passing a copy of the value as an argument. | |||||||
feedback
|

call-by-valueandcall-by-referencediffer in a very crucial way. (Personally I prefer to usecall-by-object-sharingthese days overcall-by-value[-of-the-reference], as this describes the semantics at a high-level and does not create a conflict withcall-by-value, which is the underlying implementation.) – pst Dec 15 '11 at 6:12