Need help with cloning. [message #-993325] |
Sun, 27 October 2002 05:45 |
|
Well, here's to make it quick and easy to understand:
clone objectA -> objectB as instance: - changes made on A affects B - changes made on B affects A
clone objectA -> objectB as reference: - changes made on A affects B - changes made on B does not affect A
clone objectA -> objectB as copy: - changes made on A does not affect B - changes made on B does not affect A
You can have as many references or instances as you want for an object.
- Abjab
|
|
|