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

I am new to java, hence again another probably silly doubt.

I just want to know whether I can create public static final variables in an interface file. I know interfaces are abstract classes which contain methods that must be implemented by any class which implements the interfcae. But my question is whether I can keep some common constant values defined in these files?

share|improve this question
Isn't this something that is trivial to simply try? You do have a working compiler, right? – Greg Hewgill Oct 25 '10 at 6:01
I am sorry, I must rephrase. I have tried and it works. But I rather wanted to know if this is a good practice. – kiki Oct 25 '10 at 6:03

3 Answers

up vote 6 down vote accepted

Yes, you can:

public interface Constants
{
    public static final int ZERO = 0;
}

However, it's generally reckoned not to be a good idea these days. It's not so bad if the interface has a real purpose as well, and the constants are likely to be used by most of the implementations... but introducing an interface just to make it easier to get to constants is an abuse of the purpose of interfaces, really. (And that's what used to happen a lot.)

share|improve this answer
So then what is the solution? Define another class simply to define these constants? – kiki Oct 25 '10 at 6:01
@kiki: It depends on the situation. Sometimes enums work well instead of constants. Sometimes having them in a natural existing interface is as clean as anything else. Sometimes just keep them with the class that relates to them most strongly. Sometimes create a new class. – Jon Skeet Oct 25 '10 at 6:02
1  
If you are implementing the interface only to avoid prefixing them with the interface name that is. – Maurice Perry Oct 25 '10 at 6:03

Yes, you can keep constants in interfaces. BTW, it's considered to be not very good practice.

share|improve this answer

Certainly, public constants can be used declared inside interfaces. One thing, however, if your interface is just going to be placeholders for constants, use enum instead

share|improve this answer

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.