|
Abstract Class
I have to take a design decision. I have a super class that is being inherited by a couple of classes. Working fine.
If I declare it Abstract, it works as it is. I understand that one cannot instantiate Abstract class, but I don't need to do that.
Is it ok to declare it Abstract?
Thanks.
|