public class Test {
public static void main (String [] args) {
TestMathRandom x = new Test();
StringBuffer a = new StringBuffer ("A");
StringBuffer b = new StringBuffer ("B");
x.operate (a,b);
System.out.println(a + "," +b);
}
void operate (StringBuffer x, StringBuffer y) {
x.append(y);
y = x;
}
}
Ans is AB,B Please tell me why value of b is unchanged.
You are passing values of the variables x and y, not a reference to them. So the changed made inside the operate function are useless, follow the link provided as a comment to your post to understand better ;)