Why we should declare the variables as static and final in
interfaces?



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

Post New Answer

More Core Java Interview Questions

What is object data type?

0 Answers  


Can we override private method in java?

0 Answers  


What is the difference between math floor and math round?

0 Answers  


What are the 4 versions of java?

0 Answers  


What environment variables do I need to set on my machine in order to be able to run java programs?

0 Answers  






Can we instantiate interface in java?

0 Answers  


What is slash r?

0 Answers  


What is user defined exception in Java?

0 Answers   TCS,


Can a class have multiple superclasses?

0 Answers  


Does variable declaration allocate memory?

0 Answers  


What is string length in java?

0 Answers  


How do you implement tree mirroring in java?

0 Answers   EXL, HCL,


Categories