|
Need help with cloning. [message #-993327] |
Sat, 26 October 2002 16:28 |
|
well Copy is an actual copy of the object, Insance and referance are allmost the same, if you make a referance of an object its a mirror of the object and anything you edit on the original will change on the referance too.
Hope it helps
|
|
|
|
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
|
|
|