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

I have this very akward question...

void changeString(String str){
    str = "Hello world":
}

main(){

    String myStr = new String("");
    changeString(myStr);
}

When main returns the value is still "" and not "Hello world" Why is that?

Also, how do I make it work? Lets say I want my function changeString to change the string it got to "Hello world"...?

Thanks

share|improve this question

7 Answers

up vote 12 down vote accepted

Everyone explained why it doesn't work, but nobody explained how to make it work. Your easiest option is to use:

String changeString() {
    return "Hello world";
}

main() {

    String myStr = new String("");
    myStr = changeString();
}

Although the method name is a misnomer here. If you were to use your original idea, you'd need something like:

void changeString(ChangeableString str) {
    str.changeTo("Hello world");
}

main() {

    ChangeableString myStr = new ChangeableString("");
    changeString(myStr);
}

Your ChangeableString class could be something like this:

class ChangeableString {
    String str;

    public ChangeableString(String str) {
        this.str = str;
    }

    public void changeTo(String newStr) {
        str = newStr;
    }

    public String toString() {
        return str;
    }
}

A quick lesson on references:

In Java method everything is passed by value. This includes references. This can be illustrated by these two different methods:

void doNothing(Thing obj) {
    obj = new Something();
}

void doSomething(Thing obj) {
    obj.changeMe();
}

If you call doNothing(obj) from main() (or anywhere for that matter), obj won't be changed in the callee because doNothing creates a new Thing and assigns that new reference to obj in the scope of the method.

On the other hand, in doSomething you are calling obj.changeMe(), and that dereferences obj - which was passed by value - and changes it.

share|improve this answer
maybe nitpicky, but your second solution won't work because String is a final class (you can't assign a String variable to a ChangeableString). It would probably help the OP to see how you would have to define ChangeableString. – Aaron Novstrup Aug 15 '10 at 6:25
@anov "you can't assign a String variable to a ChangeableString" Where am I doing that? – NullUserException Aug 15 '10 at 6:28
Thanks! Actually, my func does return a value, so I cant return the new string from it. As for the second solution (with the ChangeableString), thats a good one. However, I dont want to mess up my code and add this class for only a single call. That`s really annoying, if I use Java class thet does not have some "set" function built, do I really have to use this solution of creating another container to pass it? Isnt there some workaround to pass it by &?! Thats really not nice to write a container for each class that does not have a "set" or "change" function.... – Yura Aug 15 '10 at 6:28
1  
@Yura I guess the real question we all should have been asking is why you want to change the myStr reference. It might be better to make it a member variable of the class that contains your main() method. – Aaron Novstrup Aug 15 '10 at 6:45
2  
@Yura It's hard to help without seeing a more representative code sample, but from what your saying it sounds like your code needs to be refactored. Using a char[] (or a String[] that just contains one String!) is just a way to hack around the issue rather than correcting it. I understand the temptation to fall back on C++ idioms if that's what you're used to, but it's going to impede your progress in learning the new language. – Aaron Novstrup Aug 15 '10 at 7:16
show 7 more comments

Java uses a call by value startegy for evaluating calls.

That is, the value is copied to str, so if you assign to str that doesn't change the original value.

share|improve this answer

Because the reference myStr is passed by value to the function changeString and the change is not reflected back to the calling function.

P.S : I am not a Java guy.

share|improve this answer
downvoter, leave a comment please. – Prasoon Saurav Aug 15 '10 at 6:28
2  
I didn't downvote, but the phrase "the change is not reflected back" can be misleading. Some changes, depending on the semantics, ARE reflected back. It's definitely not true that pass-by-value means that there are no side effects (and this is also the source of some beginner confusions, e.g. with passing array references and having its elements modifiable by a method). – polygenelubricants Aug 15 '10 at 9:36

If the changing of your String happens very often you could also assign a StringBuffer or StringBuilder to your variable and change its contents and only convert it to a String when this is needed.

share|improve this answer

Expanding a bit on NullUserException's excellent answer, here's a more general solution:

public class Changeable<T> {
   T value;

   public Changeable(T value) {
      this.value = value;
   }

   public String toString() {
      return value.toString();
   }

   public boolean equals(Object other) {
      if (other instanceof Changeable) {
         return value.equals(((Changeable)other).value);
      } else {
         return value.equals(other);
      }
   }

   public int hashCode() {
      return value.hashCode();
   }
}

Yura's original code can then be rewritten as:

void changeString(Changeable<String> str){
   str.value = "Hello world":
}

void main() {
   Changeable<String> myStr = new Changeable<String>("");
   changeString(myStr);
}

And, just for fun, here it is in Scala:

class Changeable[T](var self: T) extends Proxy;

object Application {
   def changeString(str: Changeable[String]): Unit = {
      str.self = "Hello world";
   }

   def main(): Unit = {
      val myStr = new Changeable("");
      changeString(myStr);
   }
}
share|improve this answer

Bill, I have a solution to your problem which uses a List as a pointer in java!

void changeString(List<String> strPointer ){
    String str = "Hello world";
    strPointer.add(0, str);
}

main(){
    LinkedList<String> list = new LinkedList<String>();
    String myStr = new String("");
    changeString(list);
    myStr = list.get(0);
    System.out.println( myStr );
}

This answer takes a little extra work to insert and get out the string from the list, however the final line will print "Hello world!"

I hope this can help others as well!

-Port Forward Podcast

share|improve this answer

This is because you are only passing in a reference to the String. All objects in Java are pass-by-reference.

So, str = "foo" only changes the local copy of str inside the function - and when the function returns, that local copy is gone.

share|improve this answer
2  
-1 This is wrong, plain wrong – NullUserException Aug 15 '10 at 6:03
2  
No, all references are passed by value, which is not the same as "pass-by-reference" in a sense that is comparable to, say, C++. – Bart Kiers Aug 15 '10 at 6:03
1  
@Borealid The immutability of Strings is irrelevant. He would have the same problem if he were passing a (mutable) LinkedList instead of a String. – Aaron Novstrup Aug 15 '10 at 6:36
1  
@Borealid He's not calling a method on the String. He's trying to reassign the reference to the String. It's like doing passedLinkedList = new LinkedList();, and it would not modify the original LinkedList variable outside the called method. – Aaron Novstrup Aug 15 '10 at 7:10
3  
It's not "just nomenclature". Pass-by-reference is a well-defined term that the OP apparently understands: "Isnt there some workaround to pass it by &?!", and the term entails that the original reference is passed (i.e. the myStr reference). Suggesting that Java's semantics is pass-by-reference just adds to the confusion. – Aaron Novstrup Aug 15 '10 at 7:41
show 6 more comments

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.