In C#, when you implement an interface all members are public by default. Do you think it's better if we can specify the accessibility modifier (protected, internal, except private of course) or better use an abstract class instead?
|
|
|
|
|
|
|
You can hide almost all of the code implemented by interfaces to external assemblies.
This will test the code.
Rudedog =8^D |
||
|
|
|
|
An interface is a contract that all implementing classes adhere to. This means that they must adhere to all of it or none of it. If the interface is public then every part of that contact has to be public, otherwise it would mean one to friend/internal classes and a different thing to everything else. Either use an abstract base class or (if possible and practical) an internal extension method on the interface. |
||
|
|
|
|
You can hide the implementation of an interface by explicitly stating the interface name before the method name:
|
||
|
|
|
|
If an interface is internal, all its members will be internal to the assembly. If an nested interface is protected, only the subclasses of the outer class could access that interface. Internal members for an interface outside of its declaring assembly would be pointless, as would protected members for an interface outside of its declaring outer class. The point of an interface is to describe a contract between a implementing type and users of the interface. Outside callers aren't going to care and shouldn't have to care about implementation, which is what internal and protected members are for. For protected members that are called by a base class, abstract classes are the way to go for specifying a contract between base classes and classes that inherit from them. But in this case, implementation details are usually very relevant, unless it's a degenerate pure abstract class (where all members are abstract) in which case protected members are uselss. In that case, go with an interface and save the single base class for implementing types to choose. |
|||
|
|
|
|
I'm familiar with Java rather than C#, but why an earth would you want a private member within an interface? It couldn't have any implementation and would be invisible to implementing classes, so would be useless. Interfaces exist to specify behaviour. If you need default behaviour than use an abstract class. |
||
|
|
|
|
Interfaces do not have access modifiers in their methods, leaving them open to whichever access modifier is appropriate. This has a purpose: it allows other types to infer what methods and properties are available for an object following an interface. Giving them protected/internal accessors defeats the purpose of an interface. If you are adamant that you need to provide an access modifier for a method, either leave it out of the interface, or as you said, use an abstract class. |
|||
|
|
|
|
Would not make sense. An Interface is a contract with the public that you support those methods and properties. Stick with abstract classes. |
||
|
|
