Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

java

class

static

Can't find a satisfactory answer anywhere.

like image 393
ngesh Avatar asked Sep 10 '11 09:09

ngesh


People also ask

Why there is no static class in Java?

Because it doesn't add any meaning. 'static' has a meaning when applied to nested classes. It has no meaning on an outer class. So you can't specify it.

Can we declare main class as static in Java?

We can declare a class static by using the static keyword. A class can be declared static only if it is a nested class. It does not require any reference of the outer class. The property of the static class is that it does not allows us to access the non-static members of the outer class.

Can we use static at class level?

Since static variables belong to a class, we can access them directly using class name. So, we don't need any object reference. We can only declare static variables at the class level. We can access static fields without object initialization.

What Cannot be declared as static in Java?

Java doesn't allow you to create top-level classes as static. You can only make a nested class as static . By doing so, you can use the nested class without having an instance of the outer class.


2 Answers

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.

like image 136
Barend Avatar answered Sep 18 '22 13:09

Barend


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":

  • Static fields, also called static variables, including static constant variables
  • Static methods
  • Static member type declarations
  • "Static members", which are the three constructs above
  • Static initializers
  • Single-static-import declarations and static-import-on-demand declarations, which are top-level declarations, but not type declarations. Here, "static" refers to the names which are imported, not the import declarations themselves.
  • The language is statically typed, and expressions should have statically known types so that their safety is "statically guaranteed".
  • The way that names, including field accesses, are bound at compile-time is referred to as static resolution, or static binding.
  • A lexical context can be a static context.
  • The invocation mode of a method invocation expression or method reference expression can be static.
  • The class name used in one example implies that checked exceptions declared in a throws clause are statically thrown.
  • Part of the memory used by the JVM is referred to as static storage, and the same section refers to "static" linkage in the C programming language.
  • The preface to the JLS mentions static analysis tools.

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.

like image 33
kaya3 Avatar answered Sep 18 '22 13:09

kaya3