You can do it in .NET by using the keyword "ref". Is there any way to do so in Java?
Thanks in advance!
|
|
You can do it in .NET by using the keyword "ref". Is there any way to do so in Java? Thanks in advance!
|
|||
|
|
|
|
What are you doing in your method? If you're merely populating an existing array, then you don't need pass-by-reference semantics - either in .NET or in Java. In both cases, the reference will be passed by value - so changes to the object will be visible by the caller. That's like telling someone the address of your house and asking them to deliver something to it - no problem. If you really want pass-by-reference semantics, i.e. the caller will see any changes made to the parameter itself, e.g. setting it to null or a reference to a different byte array, then either method needs to return the new value, or you need to pass a reference to some sort of "holder" which contains a reference to the byte array, and which can have the (possibly changed) reference grabbed from it later. In other words, if your method looks likes this:
then you're fine. If your method looks like this:
then you need to change it to either:
or:
For more details, read Parameter passing in C# and Parameter passing in Java. (The former is better written than the latter, I'm afraid. One day I'll get round to doing an update.) |
||||||||||
|
|
|
Java uses pass by value for method arguments.
This article should help you out.. http://www.javaworld.com/javaworld/javaqa/2000-05/03-qa-0526-pass.html As for the OP's question, just pass in the reference to the byte[] array to the method. The net result would be similar to pass by reference. If you modify the byte array, the caller will be able to see the changes post method execution. Update to quell the resistance :) => indicates output .NET Land
Java LandMinor mods reqd: Use hashCode() and + to concat strings in Counter.java...
|
||||||||||
|
|
|
Actually, in Java, the references are passed-by-value. In this case, the reference is a However, if you try to replace the reference, for example using Here's an interesting read about this issue: Java is Pass-by-Value Dammit! Here's an concrete example:
This program will create a It may appear that by creating a new
The length of the Why is that? That's because the That should demonstrate that Java will pass reference using pass-by-value. |
|||
|
|