+ 1
When do you use interfaces and abstract classes?
when?
2 Respostas
+ 5
If you are designing large functional units, use an abstract class. If you want to provide common, implemented functionality among all implementations of your component, use an abstract class. Abstract classes allow you to partially implement your class, whereas interfaces contain no implementation for any members.
+ 2
that was faster than i thought it would be