Constructors of an abstract class shouldn't be public and they should be protected. My question is about methods in that abstract class. Can we declare them as public or they should be protected too for the same reason?
|
|
|||||||||||||||||||
|
|
The justification for constructors on The same logic doesn't hold true with other members on the type. They can be freely invoked from outside the type hierarchy should their access modifier permit it.
Whether or not a particular member should be |
||||
|
|
|
Abstract classes shouldn't have public constructors because they don't make sense. Abstract classes are incomplete, so allowing a public contructor (which anyone could call) wouldn't work as you can't instantiate an instance anyway. Methods on abstract classes are another story. You can have implementation in an abstract class, which is the behavior that all subclasses will inherit. Think of a Shape class. Its purpose is to draw a shape on the screen, so it makes sense to make a Draw method public as you'll want callers to be able to ask your Shape to draw. The method itself can be asbstract, forcing subclasses to implement, or possibly provide an implementation which may or may not allow overriding. It depends on what the defined behavor of your class should be. |
|||||||
|
|
It depends on your use case. If you want the methods of the abstract class visible to instances of your derived class, you should make them public. If, on the other hand, you want the methods visible only to your derived class, you should make them protected. |
|||
|
|
