All Questions
Tagged with abstract-class coding
1 question
5
votes
4
answers
3k
views
Which methods should be put in an interface and which in abstract classes?
I have seen many frameworks and modules and their standard they follow is like this
UserInterface which have some predefined methods
AbstractUserClass which implements userInterface
Then ...