Java Collections min()

🎓 Check Out My Top 25 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare

In this guide, you will learn about the Collections min() method in Java programming and how to use it with an example.

1. Collections min() Method Overview

Definition:

The min() method of the Collections class in Java is used to return the minimum element of the given collection, according to the natural ordering of its elements.

Syntax:

Collections.min(Collection<? extends T> coll)

Parameters:

coll: The collection whose minimum element is to be determined.

Key Points:

- The collection must not be empty, or else a NoSuchElementException will be thrown.

- All elements in the collection must be mutually comparable using the provided comparator (or the natural ordering if using the method without a comparator), otherwise, a ClassCastException is thrown.

- There is an overloaded version of min() that takes a custom comparator as an argument to determine the minimum element based on the comparator's ordering.

2. Collections min() Method Example


import java.util.*;

public class CollectionsMinExample {
    public static void main(String[] args) {
        List<Integer> numbers = new ArrayList<>(Arrays.asList(15, 23, 7, 31, 12));

        // Finding the minimum number in the list
        int minNumber = Collections.min(numbers);
        System.out.println("Minimum number in the list: " + minNumber);

        // Finding the minimum string based on length using a custom comparator
        List<String> words = new ArrayList<>(Arrays.asList("apple", "banana", "kiwi"));
        String shortestWord = Collections.min(words, Comparator.comparingInt(String::length));
        System.out.println("Shortest word in the list: " + shortestWord);
    }
}

Output:

Minimum number in the list: 7
Shortest word in the list: kiwi

Explanation:

In the provided example, we first create a list of integers and determine the minimum number using the min() method. 

Next, we create a list of strings and determine the shortest word by providing a custom comparator to the min() method that compares strings based on their lengths.

My Top and Bestseller Udemy Courses. The sale is going on with a 70 - 80% discount. The discount coupon has been added to each course below:

Comments

Spring Boot 3 Paid Course Published for Free
on my Java Guides YouTube Channel

Subscribe to my YouTube Channel (165K+ subscribers):
Java Guides Channel

Top 10 My Udemy Courses with Huge Discount:
Udemy Courses - Ramesh Fadatare