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?
|
|
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 |
||
|
|
|
|
Java passes references by value. So you can't change the reference that gets passed in. |
||
|
|
|
|
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. |
||
|
|
|
|
Basically, reassigning Object parameters doesn't affect the argument, e.g.,
will print out |
||
|
|
|
|
Java passes references to objects by value. |
||
|
|
|
|
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? |
||
|
|
|
|
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:
|
||||||||||||||
|
|
|
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: |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
|||
|
|
|
|
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:
|
||
|
|
|
|
Hey there -- just noticed you referenced my article ;) (http://javadude.com/articles/passbyvalue.htm) 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 Dog myDog; 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 Dog object to the foo method. (I say essentially b/c java pointers aren't direct addresses, but it's easiest to think of them that way) Suppose the Dog object resides at memory address 42. This means we pass 42 to the method. if the Method were defined as
let's look at what's happening.
Now let's think about what happens outside the method: Did myDog change? There's the key. Keeping in mind that myDog is a pointer, and not an actual Dog, the answer is NO. myDog still has the value 42; it's still pointing to the original Dog. 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 foo method we defined above would have changed where myDog was pointing when it assigned someDog on line BBB. 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...) -- Scott |
||||||||||||
|
|
|
(Sorry -- accidental post -- can't delete -- unreg user -- grrrrrrrr) |
||
|
|
|
|
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. |
||
|
|
|
|
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... |
||
|
|
|
|
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. |
|||
|
|
|
|
Primitives are pass by value, objects are a bit more complicated. A reference to the object passed is passed by value, but in most situations, you can treat objects as pass by reference. |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
