in reply to Re^4: OOP and derived classes
in thread OOP and derived classes

Yes you can, but you'll have to initialize the base object yourself (if it needs initialisation).

Use of Inheritance creates tight coupling and loss of encapsulation though, so if you're writing new code, then using delegation (or Roles) would be safer.