I have a quick question regarding the clone() method in Java, used as super.clone() in regard to inheritance - where I call the clone()
clone()
super.clone()
If clone() in B returns whatever clone() in A returns and clone() in C returns whatever the clone() in B returns then clone() in C will return whatever the clone() in A returns.