I'd like semantics similar to C#'s ref keyword.
|
|
|
Java is confusing because everything is passed by value. However for a parameter of reference type (i.e. not a parameter of primitive type) it is the reference itself which is passed by value, hence it appears to be pass-by-reference (and people often claim that it is). This is not the case, as shown by the following:
Will print
|
|||||||||||||||
|
|
Another option is to use an array, e.g.
|
|||
|
|
No. Why ? Java has only one mode of passing arguments to methods: by value. Note: For primitives this is easy to understand: you get a copy of the value. For all other you get a copy of the reference and this is called also passing by value. It is all in this picture:
|
||||
|
In Java there is nothing at language level similar to ref. In Java there is only passing by value semantic For the sake of curiosity you can implement a ref-like semantic in Java simply wrapping your objects in a mutable class:
testcase:
|
|||||||||
|
|
|
From James Gosling in "The Java Programming Language":
|
|||
|
|
|
Java is always pass by value. When you pass a primitive it's a copy of the value, when you pass an object it's a copy of the reference pointer. |
|||
|
|
|
I don't think you can. Your best option might be to encapsulate the thing you want to pass "by ref" onto another class instance, and pass the (outer) class's reference (by value). If you see what I mean... i.e. your method changes the internal state of the object it is passed, which is then visible to the caller. |
|||
|
|
