How do I declare a static class in java? eclipse wants me to remove "static" from the declaration.
static public class Constants {
|
|
|
First to answer your question: Only a Nested class can be declared static. A top level class cannot declared be static. Secondly, Inner class is a nested class that is not explicitly declared static. See the java language spec. So contrary to some answers here, Inner classes cannot be static To quote an example from the spec:
|
|||||||||||
|
|
If by 'static' you mean 'can have only static members', there's no such thing in Java. Inner classes (and only them) can be static, but that's a different concept. Inner static classes can still have instance members. |
|||||||||||||||
|
|
Eclipse complains correctly, your code won't compile as Top level class can't be declared as static. You need to first understand what static class means. static class : Top level class can't be declared as static. Only Member and Nested top-level classes can be defined as static. You declare member classes when you want to use variables and methods of the containing class without explicit delegation. When you declare a member class, you can instantiate that member class only within the context of an object of the outer class in which this member class is declared. If you want to remove this restriction, you declare the member class a static class.When you declare a member class with a static modifier, it becomes a nested top-level class and can be used as a normal top-level class as explained above. nested top-level class is a member classes with a static modifier. A nested top-level class is just like any other top-level class except that it is declared within another class or interface. Nested top-level classes are typically used as a convenient way to group related classes without creating a new package. |
||||
|
|
|
As you have already been told from the other comments, classes cannot be declared static. However there are alternatives to this problem. The most simple one is to precede all member variables and methods with the static modifier. This essentially does what you want. A slightly more involved alternative is to make the class a singleton. This is a class in which through the use of a private constructor, and an instanceOf() method, or just an Enum, you can only have one instance of that class. Semantically and syntactically you treat that instance as an ordinary instance of whatever particular class you are making a singleton, but you can only have a single instance of that class, which you retrieve via SomeObject.instanceOf(), or in an Enum implementation, SomeObject.INSTANCE. You would normally use Enums to implement this, minus the edge cases where you are extending another class. For more complete information on singletons visit the link below. |
||||
|
|
|
All top level classes are implicitly |
|||||
|