I found out that I am way too careless about allowing subclassing. I am mostly using composition rather than subclassing and I somewhat "assume" proper use in many cases (maybe because I do assume others using my APIs but not RE-using my classes). I was shortly before making all my utility classes final...
It is a long time I do plan to use findbugs but so far didn't have the time. That said, it seems that more and more findbug features find their way into NetBeans and by updating NetBeans I also get more and more of findbugs. On Wed, Aug 11, 2010 at 10:52, Wildam Martin <[email protected]> wrote: > On Wed, Aug 11, 2010 at 10:41, Jan Van Besien <[email protected]> wrote: >> http://stackoverflow.com/questions/3404301/whats-wrong-with-overridable-method-calls-in-constructors > > Oh yes, the parent class has not finished initialization when the > constructor of the child class is used - I forgot about that and I > even forgot about Josh Bloch's recommendations on inheritence - maybe > I should read again through it, it's has been quite a while since I > read the book. > > Thank you very much. > > -- > Martin Wildam > > http://www.google.com/profiles/mwildam > -- Martin Wildam http://www.google.com/profiles/mwildam -- You received this message because you are subscribed to the Google Groups "The Java Posse" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/javaposse?hl=en.
