posted 22 years ago
No. If you are referring to methods, there is a way to work around this. If you make your base class abstract, you can add those methods as abstract methods. You can then call those methods from the methods that you implement in the base class. You can implement those abstract methods in the sub class and instantiate it in the calling class.