clone() and finalize() of the Object class are declared as protected.
Any point in this?
All java classes are inherently descendants of the class Objects-- there's no exception to this.
How would
protected void finalize()
differ in effect from
void finalize()
?