Skip to content

Check If Vector is Empty in Java Example

This example shows how to check if the Vector is empty in Java. This example also shows how to check if the Vector is empty using the isEmpty method and size method.

How to check if Vector is empty in Java?

There are a couple of ways using which we can check as given below.

1. Using the isEmpty method

The Vector isEmpty method returns true if this vector object does not contain any elements.

It returns false if there is at least one element in the vector object.

Output

2. Using the size method

The Vector size method returns the number of elements contained in this vector object.

It returns 0 if there are no elements in the vector object.

We can compare the return value of the size method with 0 to check if the vector object contains any elements or not as given below.

Output

Which method should I use to check?

Let’s have a look at the source code of the Vector class for both of these methods.

As we can see from the source code, both the methods use the same elementCount internal variable. So as far as performance is concerned, there will not be any difference between these methods.

However, using the isEmpty method makes code more readable and cleaner than getting the size and comparing it with 0 for this purpose.

This example is a part of the Vector in Java Tutorial with Examples.

Please let me know your views in the comments section below.

References:
Java 8 Vector Documentation

About the author

Leave a Reply

Your email address will not be published.