Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why are interface variables static and final by default in Java?

share|improve this question
6  
You shouldn't put any variables inside Interfaces. – cherouvim Mar 12 '10 at 5:52
+1 - @cherouvim TRUE – RubyDubee Mar 12 '10 at 5:56
2  
Why on Earth not? – JUST MY correct OPINION Sep 9 '10 at 11:24
7  
Because interfaces define contracts which can be implemented in various ways. The value of a variable is implementation. – cherouvim Sep 24 '11 at 7:55

6 Answers

up vote 22 down vote accepted

From www.codestyle.org:

Interface variables are static because Java interfaces cannot be instantiated in their own right; the value of the variable must be assigned in a static context in which no instance exists. The final modifier ensures the value assigned to the interface variable is a true constant that cannot be re-assigned by program code.

share|improve this answer

Because Sun incorrectly decided developers didn't need a const keyword.

share|improve this answer

Because anything else is part of the implementation, and interfaces cannot contain any implementation.

share|improve this answer
1  
then what is the reason for final. – Jothi Mar 12 '10 at 5:56
1  
To indicate that its a constant. Java doesn't have a const keyword. static final is how you declare constants. – Amir Afghani Mar 12 '10 at 6:01

I think it's because interfaces can't be instantiated, so all variables are declared as static. Use of the final keyword means it doesn't have a body.

share|improve this answer

static - because Interface cannot have any instance. and final - because we do not need to change it.

share|improve this answer

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.

share|improve this answer
Abstract classes can have instance variables as well as implemented functions. Interfaces can't. – dan04 Mar 12 '10 at 6:13
Isn't it a coincidence, then, that I didn't mention abstract classes? – JUST MY correct OPINION Mar 12 '10 at 7:54
he's pointing out that abstract classes are by definition abstract and cannot be instantiated. But somehow they can have instance variables. Your reasoning is unsound. – Philip Potter Mar 12 '10 at 8:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.