N
newsgroper
I have an abstract class with some abstract methods. I created
another class that derives from the abstract method. In the derived
class I have overridden all the abstract methods. However, I tried to
create a method in the class that doesn't exist in the abstract class
and I get a compile error that says the method cannot be found in the
abstract class.
Am I to understand that I cannot add any additional methods to the
derived class and that I can only use methods that are in the abstract
classes?
another class that derives from the abstract method. In the derived
class I have overridden all the abstract methods. However, I tried to
create a method in the class that doesn't exist in the abstract class
and I get a compile error that says the method cannot be found in the
abstract class.
Am I to understand that I cannot add any additional methods to the
derived class and that I can only use methods that are in the abstract
classes?