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?
|
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? |
||||
| show 4 more comments |
|
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:
|
|||||||||||||||||||||
|
|
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...) |
|||||||||||||||||||||
|
|
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! |
|||||||||||||||||
|
|
Java always passes arguments by value NOT by reference. Let me explain this through an example:
I will explain this in steps:
I hope you understand now how passing objects as arguments works in Java :) |
|||||||||||||||||||||
|
|
Java passes references by value. So you can't change the reference that gets passed in. |
|||||||||||||
|
|
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 |
|||||
|
|
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". |
|||||||||||||
|
|
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. |
|||||
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
Basically, reassigning Object parameters doesn't affect the argument, e.g.,
will print out |
||||
|
|
|
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. |
||||
|
|
|
Have a look at this code. This code will not throw
If Java is pass by reference then it should have thrown |
||||
|
|
|
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:
|
||||
|
|
|
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 |
||||
|
|
|
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? |
|||||
|
|
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: |
||||
|
|
|
Java is pass by constant reference where a copy of the reference is passed which means that it is basically a pass by value. You might change the contents of the reference if the class is mutable but you cannot change the reference itself. In other words the address can not be changed since it is passed by value but the content that is pointed by the address can be changed. In case of immutable classes, the content of the reference cannot be changed either. |
||||
|
|
|
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. |
||||
|
|
|
Java copies the reference by value. So if you change it to something else (e.g, using |
||||
|
|
|
No, it's not pass by reference. Java is pass by value according to the Java Language Specification:
http://docs.oracle.com/javase/specs/jls/se7/html/jls-8.html#jls-8.4.1 |
||||
|
|
|
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. |
||||
|
|
|
It's really quite, quite simple: For a variable of primitive type (eg. For a variable of reference type (eg. Either way, you're always passing stuff by value. Compare this to say C++ where you can have a method to take an |
||||
|
|
|
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. |
||||
|
|
|
Here is how to make pass by reference work slightly.
|
||||
|
|
|
I stumbled upon this page, when I want my method able to modify its passed argument, that is pass by reference. After reading this, I realize that I can't do it. Hence I create a solution for this.Maybe you want to down vote me because of my answer, because it's not a direct answer to the question, but here I share my tips on how to be able to achieve the same pass by reference result we often wants :
Just set the return result to be of
This way, you can achieve the same result of modifying a passed variabel (pass by reference) and get those multiple result from a method. |
||||
|
|
|
Everything is passed by value. Primitives and Object references. But objects can be changed, if their interface allows it. When you pass an object to a method, you are passing a reference, and the object can be modified by the method implementation.
The reference of the object itself, is passed by value: you can reassign the parameter, but the change is not reflected back:
As matter of effect, "p" is reference (pointer to the object) and can't be changed. Primitive types are passed by value. Object's reference can be considered a primitive type too. To recap, everything is passed by value. |
||||
|
|
|
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... |
||||
|
|
|
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. |
||||
|
|
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.
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.) – user166390 Dec 15 '11 at 6:12