Why can't a top level class be static in Java?

JavaClassStatic

Java Problem Overview


Can't find a satisfactory answer anywhere.

Java Solutions


Solution 1 - Java

All top-level classes are, by definition, static.

What the static boils down to is that an instance of the class can stand on its own. Or, the other way around: a non-static inner class (= instance inner class) cannot exist without an instance of the outer class. Since a top-level class does not have an outer class, it can't be anything but static.

Because all top-level classes are static, having the static keyword in a top-level class definition is pointless.

Some code to play around with:

public class Foo {

    public class Bar {
         // Non-static innner class
    }

    public static class Baz {
         // Static inner class
    }
}

public class Example {
    public static void main(String[] args) {
        new Foo(); // this is ok
        new Foo.Baz(); // this is ok
        new Foo.Bar(); // does not compile!

        Foo f = new Foo();
        Foo.Bar bar = f.new Bar(); //this works, but don't do this
    }
}

I put the "but don't do this" in there because it's really ugly code design. Instance inner classes should not be visible outside the outer class. They should only be used from within the outer class.

Solution 2 - Java

Simply put, a top-level type declaration cannot be static, because the Java Language Specification (JLS) doesn't say that it can be. The JLS says this explicitly about the static keyword as a modifier of top-level classes:

> The modifier static pertains only to member classes (§8.5.1), not to top level or local or anonymous classes.

However, the accepted answer - which has many upvotes - says that this is because top-level classes are implicitly static "by definition", so the static modifier would be unnecessary. That is wrong.

The word "static" appears in the JLS in quite a few places, but never to refer to top-level type declarations. Here is an exhaustive list of things that can be "static":

There are no uses of the word "static" in the JLS to refer to top-level type declarations; so as well as not being explicitly static, they are not (and cannot be) "implicitly" static, by definition.

Solution 3 - Java

static can be added nested classes of an interface, even though this is the default.

I believe static cannot be added to top level classes because initially there were no nested classes and you couldn't add static to any class.

Later nested class were added and static could be added to nested classes, however there is a tendency not to change the syntax any more than needed so it wasn't added to top level classes. (as there was no need/benefit)

Solution 4 - Java

Whenever we run a class JVM instantiates an object. JVM can create a number of objects, by definition Static means you have same set of copy to all objects.So, if top class is static then whenever you run a program it creates an Object and keeps over riding on to the same Memory Location.

Solution 5 - Java

Will defining an outer class as static serve any other purposes other than a non-static class?

  1. Every class is already common to all of its objects, and there is no need to make it static to become available to all of its objects.

  2. We need a class name to access its static members because these members are part of a class while an outer class is part of a package. We can directly access the class by just writing package_name.class_name (similar to class_name.static_field_name). So again, there is no need to do something that's already there by default.

  3. We do not need any object to access a class if it is visible. We can simply write package_name.class_name to access it. And by definition, a class is a blueprint for its objects, and we create a class to create objects from it (though an exception will always be there, like java.lang.Math). Again, there is no need to define an outer class as static. From the above points, we can say Java's creators had not allowed an outer class to be static because there is no need to make it static. Allowing to make the outer class static will only increase complications, ambiguity, and duplicity.

Refer this link for more details- https://dzone.com/articles/why-an-outer-class-cant-be-static

Solution 6 - Java

Well I guess you dont understand properly if you desire to see a "static" keyword in an outer class.

In short how are you even going to use the feature of static on an outer class?

public class Outer
{
   public static int x = 0 ; 
   
}

Now you are going to do Outer.x to access the static variable . This would imply that x shares a single value across all objects of Outer.

Now that we have that away , of what consequence would the static keyword in the Outer class be ? .

Solution 7 - Java

We can't declare outer (top level) class as static because the static keyword is meant for providing memory and executing logic without creating Objects, a class does not have a value logic directly, so the static keyword is not allowed for outer class.

Solution 8 - Java

The access modifier supported for top level are class are as follows :

  1. public

  2. default

  3. abstract

  4. final

  5. strictfp.

Reason: Top level class

Because the static keyword is meant for providing memory and executing logic without creating Objects, a class does not have a value logic directly, so the static keyword is not allowed for outer class and mainly as mentioned above static can't be used at Package level. It only used within the Class level.

Solution 9 - Java

  1. Whenever we run a class JVM will create a object. All static objects are created in static memory and not in heap memory. Meaning, we have same set of copy to all objects. So if the top class is static and u run the pgm, it creates a static object and keep over riding on to the same static memory. which is wrong.

2.We should define members as static which Should be common to all objects of the class. Since, Every class is already common to all of its objects and there is no need to make it static to become available to all of its objects.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionngeshView Question on Stackoverflow
Solution 1 - JavaBarendView Answer on Stackoverflow
Solution 2 - Javakaya3View Answer on Stackoverflow
Solution 3 - JavaPeter LawreyView Answer on Stackoverflow
Solution 4 - JavasalsingaView Answer on Stackoverflow
Solution 5 - JavaRahul NarangView Answer on Stackoverflow
Solution 6 - JavaMuhammad Ahmed AbuTalibView Answer on Stackoverflow
Solution 7 - Javauser6674097View Answer on Stackoverflow
Solution 8 - JavaVishal ShethView Answer on Stackoverflow
Solution 9 - JavaAnurag PrasadView Answer on Stackoverflow