vote up 3 vote down star

I found an unusual Java method today:

private void addShortenedName(ArrayList<String> voiceSetList, String vsName)
{
     if (null == vsName)
       vsName = "";
     else
       vsName = vsName.trim();
     String shortenedVoiceSetName = vsName.substring(0, Math.min(8, vsName.length()));
     //SCR10638 - Prevent export of empty rows.
     if (shortenedVoiceSetName.length() > 0)
     {
       if (!voiceSetList.contains("#" + shortenedVoiceSetName))
         voiceSetList.add("#" + shortenedVoiceSetName);
     }
}

According to everything I've read about Java's behavior for passing variables, complex objects or not, this code should do exactly nothing. So um...am I missing something here? Is there some subtlety that was lost on me, or does this code belong on thedailywtf?

flag

1  
Heh, write a function that swaps two `int`s :) Yep, switch to C# :-p – Mehrdad Afshari Apr 27 at 20:34
Mehrdad: Just use Integer rather than int. – Andy Apr 27 at 20:39
@Andy: Wasn't bashing Java that much. I know it's possible and not a big issue. Mostly meant as an educational joke ;) – Mehrdad Afshari Apr 27 at 20:41
isn't Integer immutable? – Carlos Heuberger Apr 28 at 0:08
1  
@Carlos Heuberger: Yes, but you can get around it with a one-element int[] instead. – mmyers Apr 28 at 0:11
show 3 more comments

5 Answers

vote up 24 vote down check

As Rytmis said, Java passes references by value. What this means is that you can legitimately call mutating methods on the parameters of a method, but you cannot reassign them and expect the value to propagate.

Example:

private void goodChangeDog(Dog dog) {
    dog.setColor(Color.BLACK); // works as expected!
}
private void badChangeDog(Dog dog) {
    dog = new StBernard(); // compiles, but has no effect outside the method
}

Edit: What this means in this case is that although voiceSetList might change as a result of this method (it could have a new element added to it), the changes to vsName will not be visible outside of the method. To prevent confusion, I often mark my method parameters final, which keeps them from being reassigned (accidentally or not) inside the method. This would keep the second example from compiling at all.

link|flag
Thanks for the example. – Troy Nichols Apr 27 at 20:38
vote up 16 vote down

Java passes references by value, so you get a copy of the reference, but the referenced object is the same. Hence this method does modify the input list.

link|flag
2  
The 2 principles of Java variables: 1) variables are passed by value 2) all variables are references (or primitives). – DJClayworth Apr 27 at 20:39
vote up 9 vote down

See my article, "Java is Pass-by-Value Dammit!"

http://javadude.com/articles/passbyvalue.htm

link|flag
Excellent article. – Don Branson Apr 27 at 22:01
+1 from me - very nice indeed, especially the bit about RMI. That's often forgotten. – duffymo Apr 28 at 1:06
vote up 1 vote down

Well, it can manipulate the ArrayList - which is an object... if you are passing an object reference around (even passed by value), changes to that object will be reflected to the caller. Is that the question?

link|flag
vote up 0 vote down

I think you are confused because vsName is modified. But in this context, it is just a local variable, at the exact same level as shortenedVoiceSetName.

link|flag

Your Answer

Get an OpenID
or

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