in reply to Inherit only few methods from a parent class

It seems to me that if you want to inherit only some methods from a parent class, you may be inheriting from the wrong parent...

Perhaps you should split that parent up. The common methods could be moved to a common ancestor, and your current "parent" and "child" would become siblings.

  • Comment on Re: Inherit only few methods from a parent class