Lesson 8 - The Collections Java utility class - Getting and modifying
In the previous lesson, Queue and Stack in Java, we introduced the queue and the stack. In
today's Java tutorial, we're going to focus on the Collections
library class, which contains a large number of utility methods to simplify the
work with collections.
The Collections Class
This class belongs to the java.util
package. Its methods could
be categorized into several categories:
- getting data from collections
- modifying existing collections
- creating new collections
Getting Data From Collections
We can use the following methods to get useful information from a collection:
disjoint()
This method returns true
, if two given collections do
not contain the same elements:
{JAVA_OOP}
import java.util.Collections;
import java.util.Collection;
import java.util.Arrays;
{JAVA_MAIN_BLOCK}
final Collection<String> c1 = Arrays.asList("Carl", "Paul", "Michael");
final Collection<String> c2 = Arrays.asList("John", "Jack", "Peter");
final boolean disjoint = Collections.disjoint(c1, c2);
System.out.println("Collections don't contain the same elements: " + disjoint);
{/JAVA_MAIN_BLOCK}
{/JAVA_OOP}
The result:
Console application
Collections don't contain the same elements: true
frequency()
Finds out
...End of the preview...
Continue further
You've come here and that's great! We believe that the first lessons showed you something new and useful
Do you want to continue the course? Go to the premium section.
Buy this course
This article is licensed: Premium, by buying this article, you agree with the terms of use.
- Unlimited and permanent access to individual lessons.
- High quality IT knowledge.
- Skills to help you get your dream and well-paid job.
Article description
Requested article covers this content:
In this Java tutorial, we'll look at the Collections utility class which contains useful methods for retrieving and modifying data in collections.
You gain credits by supporting our network. This is done by sending a helpful amount of money to support the site, or by creating content for the network.