aspose file tools
The moose likes Java in General and the fly likes Why is interface constant static Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Why is interface constant static" Watch "Why is interface constant static" New topic
Author

Why is interface constant static

Prabu JayaPandian
Greenhorn

Joined: Aug 04, 2008
Posts: 8
We declare interface constants as public static and final. I understand why we declare them as public and final. But why do we make them static?
[ August 04, 2008: Message edited by: Prabu JayaPandian ]
Rob Spoor
Sheriff

Joined: Oct 27, 2005
Posts: 19232

Because if they weren't static, they would belong to instances. First of all, that means data replication - all instances of all implementing classes will have the exact same constant variables.
Second of all, instance variables are part of the implementation, and interfaces can have no implementation.


SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Why is interface constant static
 
Similar Threads
Interface
Interface variables
why interface variables are static and final. what is reason to declare them as like that?
Non-final member variables in interfaces
Inner Class in the Interface