Aug. 20, 2013
9:43 a.m.
On Aug 20, 2013, at 11:34 , Tim Hendriks <th72@dds.nl> wrote:
I'am just learning (a few weeks) .... so why not use super in Class?
Thanks Tim
Nothing wrong with using super in Class, but using it in class initialize is a no-no. That method is treated specially and called once a Class is loaded into a system, usually to initialize class variables. So calling super from it will lead to re-initialization of existing class variables when you load code, which is generally not a kosher thing to do; if those have been changed since initialization, it's usually for a reason. Cheers, Henry