Each reference in Java is simply an address to some object in memory, so the kind of "automatic updates" you're asking for require aren't possible without some extra code.
Imagine that region1 references the address 0x1001 in memory, and region2 references 0x2001. These two memory locations hold the actual region data:
0x1001: x = 0, y = 5, width = 20, height = 30
0x2001: x = 100, y = 200, width = 50, height = 20
If you could somehow tell the object at 0x2001 to be equal to 0x1001, using your mergeRegions method, would Java try to do something like this?
0x1001: x = 0, y = 5, width = 20, height = 30
0x2001: 0x1001
This wouldn't work though, because the Java objects are both supposed to be Region objects, each with the same fields and methods. If we wipe out the the Java object at 0x2001, and just put in a plain address, none of the existing references to 0x2001 would work, because they're all expecting a Region object at that address. That's why you cannot "directly assign" one Java reference to another.
Here are three hints to help you redesign your algorithm:
- Instead of copying the address
0x1001 into 0x2001, you can copy all of the data from 0x1001 into the object at 0x2001. This would make both objects equivalent, but separate.
- You can introduce one level of indirection. If you know C, think "pointers to pointers". Your
regions array would hold a references to IndirectRegion objects, which would in turn hold references to the actual Region objects. When you want to update region2 to region1, you only need to ask one of the IndirectRegion objects to update its internal reference.
- Wait until the end of your algorithm before you merge the regions. If you're able to collect up all the merge operations, you may be able to execute all of them in a single O(n) loop.