How Java instance main methods and unnamed classes work

Benefits of unnamed classes and instance main methods

Instance main methods and unnamed classes will forever change how developers learn Java and bootstrap applications by providing a simple, clean and concise syntax to launch applications.

Developers who create a runnable Java class, be it for a ‘Hello World’ demonstration or to kick off a fully featured enterprise application, will enjoy the following technical benefits when unnamed classes and instance main methods are used:

  • No class declaration is required
  • No arguments need to be passed to the main method
  • Java keywords public and static are no longer required

Java 21 preview features makes it easier than ever to write a Java application.

Java unnamed classes example

With instance main methods and unnamed classes, a simple HelloWorld Java application would look like this:

void main() {
  System.out.println("Hello, World!");
}

The new syntax is much more concise than what was previously required to write a standalone application in Java:

public class HelloWorld { 
  public static void main(String[] args) { 
    System.out.println("Hello, World!");
  }
}

No more public static void main

Java has always been an easy language to learn.

However, the need to define a class, declare a String array, use an access modifier and use the static keyword expose new learners to advance concepts that can make getting your first Java program up and running an intimidating experience. Making the learning experience for new users was one of the primary goals of unnamed classes and Java instance methods.

According to the Java Enhancement Proposal 445, “these changes allow us to write Hello, World! with no access modifiers, no static modifiers, and no String[] parameter, so the introduction of these constructs can be postponed until they are needed”

Java vs other languages

Another benefit of the introduction of Java’s instance main methods and unnamed classes is that it further differentiates Java from other languages that use cryptic and confusing notations to kick off a standard application.

For example, in order to achieve the same results as the succinct Java Hello World program written above, a Python programmer would need to write the following cryptic and verbose code:

def main():
  print('Hello, world!', end="")

if __name__ == "__main__":
  main()

Improvements like this help to put an end to the debate over which language has a simpler, easier to understand syntax.

Java 21 preview features

Instance main methods and unnamed classes are a preview feature in Java 21. Other preview features include:

  • Unnamed patterns and variables
  • Scoped values
  • Structured concurrency

While Java has always been easy to learn, it’s encouraging to see the stewards of the language always fighting to lower the barrier to entry.

With unnamed classes and instance main methods, Java is easier to learn than ever.

 

 

 

 

 

App Architecture
Software Quality
Cloud Computing
Security
SearchAWS
Close