$show=/label

Java - How to return empty array?

SHARE:

A quick guide to return an empty array in java in various ways.

1. Overview

In this tutorial, we'll learn how to return an empty array in java in different ways.

An empty array means the array is not having any values and the length of the array is zero. Sometimes we need to return an empty array rather than returning null values.

Creating an empty array can be done in 3 ways.


All examples work for any type of array ex. int, double, custom type such as Emp, Student etc.

Java - How to return empty array?



2. Return Empty Array - With new int[0] or new Emp[0]


When you want to return an array with a size of 0 then you just need to return new int[0]. Here, new int[0] returns an integer type array with zero values and size is 0.

Example 1:

In the below example, we added a utility method that returns an empty array. So that this method can be accessed from any other similar scenarios.
package com.javaprogramto.arrays.empty;

public class ReturnEmptyArrayExample1 {

	public static void main(String[] args) {

		if (true) {
			int[] array1 = emptyArray();
			System.out.println("Length of int array 1 : " + array1.length);
		}
		
		if( 40 % 10 == 0) {
			int[] array2 = emptyArray();
			System.out.println("Length of int array 2 : " + array2.length);
		}

	}

	public static int[] emptyArray() {

		return new int[0];
	}
}

Output:
Length of int array 1 : 0
Length of int array 2 : 0

We could see the length of returned array size is 0 from method emtpyArray().

3. Return Empty Array - With {} Empty curly braces


Another approach is to create the empty array is using empty curly braces like {}. We no need of using new keyword and type of array with size 0.

This is the simplest one in forming the blank array. You can simply return the empty braces from the method with the type.

Example 2:

In the below example, line int[] emptyArray = {}; creates the empty integer array with size 0.
package com.javaprogramto.arrays.empty;

public class ReturnEmptyArrayExample2 {

	public static void main(String[] args) {

		if (true) {
			int[] array1 = emptyArrayWIthCurlyBraces();
			System.out.println("Length of int array 1 : " + array1.length);
		}

		if (100 > 0) {
			int[] array2 = emptyArrayWIthCurlyBraces();
			System.out.println("Length of int array 2 : " + array2.length);
		}

	}

	public static int[] emptyArrayWIthCurlyBraces() {

		int[] emptyArray = {};
		
		return emptyArray;
	}
}

Output:
Length of int array 1 : 0
Length of int array 2 : 0

4. Return Empty Array - With Apache Commons API


Apache commons API has been added with a utility class ArrayUtils. This class has several useful methods.

ArrayUtils has a constant EMPTY_INT_ARRAY which holds an empty array of int.

in the same way, there are many empty arrays default available.

Samples:
ArrayUtils.EMPTY_BOOLEAN_ARRAY;
ArrayUtils.EMPTY_BOOLEAN_OBJECT_ARRAY;
ArrayUtils.EMPTY_STRING_ARRAY;

All of these are initialised with new boolean[0] syntax as below.
public static final float[] EMPTY_FLOAT_ARRAY = new float[0];

public static final Float[] EMPTY_FLOAT_OBJECT_ARRAY = new Float[0];

/**
 * An empty immutable {@code int} array.
 */
public static final int[] EMPTY_INT_ARRAY = new int[0];

/**
 * An empty immutable {@code Integer} array.
 */
public static final Integer[] EMPTY_INTEGER_OBJECT_ARRAY = new Integer[0];

/**
 * An empty immutable {@code long} array.
 */
public static final long[] EMPTY_LONG_ARRAY = new long[0];

/**
 * An empty immutable {@code Long} array.
 */
public static final Long[] EMPTY_LONG_OBJECT_ARRAY = new Long[0];

/**
 * An empty immutable {@code Object} array.
 */
public static final Object[] EMPTY_OBJECT_ARRAY = new Object[0];

Example 3:
package com.javaprogramto.arrays.empty;

import org.apache.commons.lang3.ArrayUtils;

public class ReturnEmptyArrayExample3 {

	public static void main(String[] args) {

		if (true) {
			int[] array1 = emptyArrayWIthCurlyBraces();
			System.out.println("Length of int array 1 : " + array1.length);
		}

		if (100 > 0) {
			int[] array2 = emptyArrayWIthCurlyBraces();
			System.out.println("Length of int array 2 : " + array2.length);
		}

	}

	public static int[] emptyArrayWIthCurlyBraces() {

		return ArrayUtils.EMPTY_INT_ARRAY;
	}
}

This code also generates the same output as the above section.

5. Conclusion


In this article, We've seen how to return an empty array in 3 ways with examples.

The concepts shown will work for any type of empty array creation.




COMMENTS

BLOGGER

About Us

Author: Venkatesh - I love to learn and share the technical stuff.
Name

accumulo,1,ActiveMQ,2,Adsense,1,API,37,ArrayList,18,Arrays,24,Bean Creation,3,Bean Scopes,1,BiConsumer,1,Blogger Tips,1,Books,1,C Programming,1,Collection,8,Collections,37,Collector,1,Command Line,1,Comparator,1,Compile Errors,1,Configurations,7,Constants,1,Control Statements,8,Conversions,6,Core Java,149,Corona India,1,Create,2,CSS,1,Date,3,Date Time API,38,Dictionary,1,Difference,2,Download,1,Eclipse,3,Efficiently,1,Error,1,Errors,1,Exceptions,8,Fast,1,Files,17,Float,1,Font,1,Form,1,Freshers,1,Function,3,Functional Interface,2,Garbage Collector,1,Generics,4,Git,9,Grant,1,Grep,1,HashMap,2,HomeBrew,2,HTML,2,HttpClient,2,Immutable,1,Installation,1,Interview Questions,6,Iterate,2,Jackson API,3,Java,32,Java 10,1,Java 11,6,Java 12,5,Java 13,2,Java 14,2,Java 8,128,Java 8 Difference,2,Java 8 Stream Conversions,4,java 8 Stream Examples,12,Java 9,1,Java Conversions,14,Java Design Patterns,1,Java Files,1,Java Program,3,Java Programs,114,Java Spark,1,java.lang,4,java.util. function,1,JavaScript,1,jQuery,1,Kotlin,11,Kotlin Conversions,6,Kotlin Programs,10,Lambda,2,lang,29,Leap Year,1,live updates,1,LocalDate,1,Logging,1,Mac OS,3,Math,1,Matrix,6,Maven,1,Method References,1,Mockito,1,MongoDB,3,New Features,1,Operations,1,Optional,6,Oracle,5,Oracle 18C,1,Partition,1,Patterns,1,Programs,1,Property,1,Python,2,Quarkus,1,Read,1,Real Time,1,Recursion,2,Remove,2,Rest API,1,Schedules,1,Serialization,1,Servlet,2,Sort,1,Sorting Techniques,8,Spring,2,Spring Boot,23,Spring Email,1,Spring MVC,1,Streams,31,String,61,String Programs,28,String Revese,1,StringBuilder,1,Swing,1,System,1,Tags,1,Threads,11,Tomcat,1,Tomcat 8,1,Troubleshoot,26,Unix,3,Updates,3,util,5,While Loop,1,
ltr
item
JavaProgramTo.com: Java - How to return empty array?
Java - How to return empty array?
A quick guide to return an empty array in java in various ways.
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivv2S3VtYXiQG5BwQzeQ2Y0gaedkU42STqdYFSBciM4UkixQPIAUH65jmORHfqHdA17G_fhu6gYRzNvRgHFGmw6sRQUNI08pWHTwp8Tx5zAz7SQEn4S0L4z4axXGnGxxPoHR-ozKW3iVY/w640-h424/Java+-+How+to+return+empty+array%253F.png
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEivv2S3VtYXiQG5BwQzeQ2Y0gaedkU42STqdYFSBciM4UkixQPIAUH65jmORHfqHdA17G_fhu6gYRzNvRgHFGmw6sRQUNI08pWHTwp8Tx5zAz7SQEn4S0L4z4axXGnGxxPoHR-ozKW3iVY/s72-w640-c-h424/Java+-+How+to+return+empty+array%253F.png
JavaProgramTo.com
https://www.javaprogramto.com/2021/11/java-return-empty-array.html
https://www.javaprogramto.com/
https://www.javaprogramto.com/
https://www.javaprogramto.com/2021/11/java-return-empty-array.html
true
3124782013468838591
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS PREMIUM CONTENT IS LOCKED STEP 1: Share to a social network STEP 2: Click the link on your social network Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy Table of Content