An abstract taken from Herbert Schildt book on Java
Cloning is a potentially dangerous action, because it can cause unintended side effects. For example, if the object being cloned contains a reference variable called obRef, then when the clone is made, obRef in the clone will refer to the same object as does obRef in the original. If the clone makes a change to the contents of the object referred to by obRef, then it will be changed for the original object, too.
So when the object is being cloned, do the references pointing to that original object also gets cloned and as such these points to to the cloned object?
I am confused at this line "...obRef in the clone will refer to the same object as does obRef in the original...".