Why are interface variables static and final by default in Java?
|
|
From www.codestyle.org:
|
|||
|
|
|
Because anything else is part of the implementation, and interfaces cannot contain any implementation. |
|||||||||
|
|
I think it's because interfaces can't be instantiated, so all variables are declared as |
||||
|
|
|
static - because Interface cannot have any instance. and final - because we do not need to change it. |
|||
|
|
|
What meaning would an instance of an interface have? By DEFINITION an interface is abstract and cannot be instantiated. Thus no instance variables, static only. |
|||||||
|