Possible Duplicate:
Why can’t I declare static methods in an interface?
Inside the interface body we aren't able to declare or define any static method. What is the reason? Can any one answer for this question?
Inside the interface body we aren't able to declare or define any static method. What is the reason? Can any one answer for this question? |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
I'll assume you're talking about Java since it's by far the most popular language that has Static methods are really just free (C-style) functions anyhow, only more annoyingly verbose. The only reason why it matters what class you put them in is aesthetics/code organization. Therefore, not allowing them to be put in interfaces isn't a severe limitation. |
|||||||||
|