Why are you not able to declare a class as static in Java?
|
Only nested classes can be static. By doing so you can use the nested class without having an instance of the outer class.
Sources : On the same topic : |
|||||||||||||||||||
|
|
Class with private constructor is static. Declare your class like this:
and you can used without initialization:
|
||||
|
|
You can create a utility class (which cannot have instances created) by declaring an enum type with no instances. i.e. you are specificly declaring that there are no instances.
|
|||||||||
|
|
Sure they can, but only But for top-level classes, the language designers couldn't think of anything useful to do with the keyword, so it's not allowed. |
|||||||
|
... it can be declared static - as long as it is a member class. From the JLS:
and here:
A static keyword wouldn't make any sense for a top level class, just because a top level class has no enclosing type. |
||||
|
|
|
As explained above, a Class cannot be static unless it's a member of another Class. If you're looking to design a class "of which there cannot be multiple instances", you may want to look into the "Singleton" design pattern. Beginner Singleton info here. Caveat:
|
||||
|
|
|
One can look at
|
||||
|
|
|
I think this is possible as easy as drink a glass of coffee!. Just take a look at this. We do not use static keyword explicitly while defining class.
Is not that a definition of static class? We just use a function binded to just a class. Be careful that in this case we can use another class in that nested. Look at this:
|
|||||
|
|
if the benefit of using a static-class was not to instantiate an object and using a method then just declare the class as public and this method as static. |
|||
|
|
|
In addition to how Java defines static inner classes, there is another definition of static classes as per the C# world [1]. A static class is one that has only static methods (functions) and it is meant to support procedural programming. Such classes aren't really classes in that the user of the class is only interested in the helper functions and not in creating instances of the class. While static classes are supported in C#, no such direct support exists in Java. You can however use enums to mimic C# static classes in Java so that a user can never create instances of a given class (even using reflection) [2]:
|
|||
|
|

static? – Joachim Sauer Aug 27 '10 at 12:42staticclasses asabstract final, i.e., they can't be instantiated and can't be extended. This means they can only contain static members, which is useful for classes that only contain helper methods. – bcat Aug 27 '10 at 13:02