Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

  • Re: General CS concepts

    Passing by Value or Reference?

    First, let's review what values and references are.

    A value is the actual data of bits and bytes which contains useful information (such as the amount of money you have in your bank account). These values are passed as copies, so any changes made to one copy don't effect the other copies. So, for example take a bank statement. The bank had to print out a copy with how much money I have and how much I owe them. I can make any changes to this bank statement (say I want to add a few zeros to the end of how much I have), but at the end of the day these changes don't affect how much I actually have.

    A reference is analogous to an address. The values which are useful to us have to reside somewhere in memory, and the reference tells us where in the memory this object is. An example is a house address. If someone gets a hold of my address and decides that my door should be red, they could paint it and it would physically affect what the color of my door is.

    So how is this used in Java?

    In Java, all primitive values are modified by value. All objects are modified by reference. The reasons why objects are passed by reference is because some objects are actually quite large, and making a copy of these objects would take a lot longer than passing a simple 4-byte reference (or 8-byte if you have a 64-bit OS), and it may even be impossible if the object is large enough.

    Now let's examine some of the consequences of these design choices:

    1. When you pass a primitive, you can't change the original variable's value. This means that you must either re-design to pass an object so the value can be modified, or use a return value and then re-assign the value of the primitive.
    public static void changeIt(int value)
    {
        value = 5;
    }
     
    public static void main(String[] args)
    {
        int v = 3;
        changeIt(v);
        System.out.println(v); // should print out 3
    }

    2. When you pass an object, you can change the original value. This means that the method could potentially make changes to the object that you don't want. The obvious fix to this is to manually create a copy of the object you have and pass that instead so your original object doesn't get messed up (you'll need to make a deep copy in order to ensure that everything about the original object remains the same).

    public static void changeIt(int[] value) // arrays are not considered primitives
    {
        value[0] = 5;
    }
     
    public static void main(String[] args)
    {
        int[] v = new int[1];
        v[0] = 3;
        changeit(v);
        System.out.println(v[0]); // should print out 5
    }

    Some things to be careful about when using references:

    TODO
    General CS concepts helloworld922
    1
    1. jim829 -
      Unfortunately, this article confuses some things. Java is strictly pass by value in all cases. Both primitives and references are passed by value. Try changing the value of a reference (not the object it refers too) in a method. You can't. And finally, you don't pass objects. You pass references to objects.

      Regards,
      Jim