devxlogo

Achieve Syntax Brevity with Anonymous Classes and Instance Initializers

Achieve Syntax Brevity with Anonymous Classes and Instance Initializers

The first listing here, which may look more familiar, is considerably longer than the second listing, even though they’re essentially equivalent.

Listing 1.List friends = new ArrayList();friends.add("Ben");friends.add("Kiran");friends.add("....");

You can replace all the code in Listing 1 with an anonymous class that uses an instance initializer as shown in Listing 2.

Listing 2.new ArrayList(){{add("Ben");add("Kiran");add("....");}};
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist