+ 1
INTERFACE IN JAVA
Do we need to describe a variable as static in interface or it is static by default?
1 Réponse
+ 7
Well, you can't instantiate an interface directly, so all variables are static and final by default.
Do we need to describe a variable as static in interface or it is static by default?