All primitive types in Java are pass by value. All arrays and objects are pass reference by copy. Thus the best you can get to truly passing by reference is to pass some non-primitive type.

The...