Possible Duplicate:
Java, pass-by-value, reference variables
Consider the following simple java program
class main{
public static void main(String args[]){
int x = 5;
change(x);
System.out.println(x);
}
static void change(int x){
x = 4;
}
}
Since java uses pass by value the value of x will not change in the main..To overcome this problem we have the concept of pass by reference in c..But i do not find any such concept in java..How can i really change the value of x..? If there is no way of changing x then is this not a disadvantage of java?
C also passes parameter by value. But if you pass a pointer (also by value of a pointer), you can change the value of a variable that the pointer points to.
You can check that C pass pointer by value by changing the value of a pointer in a function. When the function returns, the pointer still points to the same location (not the one that it points in the function).
Pass by a value is not a disadvantage. I feel safer if I'm sure that a function or a method cannot change the value of an argument.
If you want to change the value of
x
, use the following code:x = change(x);
and change
void change(...)
toint change(...)
.