Why we should declare the variables as static and final in
interfaces?
Answer / nc
It is automatic static and final even if you don't declare it.
Why? Because when a class implements these interfaces, these
variables must be able to be accessed by static and
non-static methods. Also as these variables are specific to
any class instances(i.e. at the same time many classes can
implement these interfaces), they must have the same value
across the implementing classes.
Also if you want to load the value of certain values at the
application start up and all implementing classes wants
these values unchanged, then these must be static and final.
So they are static and final.
| Is This Answer Correct ? | 15 Yes | 1 No |
What is Overriding and how can it be used?
Thanks A.jyotsna, Can u tell me differnce between abstract class and interface vikash
How does queue work in java?
How do you create an array in java?
Different types of modifiers?
How to add panel to a Frame?
How can we create a synchronized collection from given collection?
How does java pattern compile work?
Difference between Primary key and unique key?
By what default value is an object reference declared as an instance variable?
What do you understand by a Static Variable?
What is the exact difference in between Unicast and Multicast object? Where will it be used?