search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

Table of Contents
Misuses and limitations of Collections.disjoint()
Exact comparison: Correct application of List.equals() method
Notes and extended thoughts
Summarize
Home Java javaTutorial The same way to compare whether list contents are exactly the same in Java

The same way to compare whether list contents are exactly the same in Java

Dec 31, 2025 am 08:06 AM

The same way to compare whether list contents are exactly the same in Java

In Java programming, it is a common need to compare whether the contents of collections (especially lists) are the same. However, depending on the specific comparison purpose, it is crucial to choose the right comparison method. This article will elaborate on how to avoid common pitfalls and use efficient and accurate methods when determining whether the contents of two lists are completely consistent (that is, not "identical").

Misuses and limitations of Collections.disjoint()

The Collections.disjoint() method is designed to determine whether two collections are mutually exclusive, that is, they have no elements in common. This method returns true if there are no common elements; otherwise, it returns false as long as there is a common element. This mechanism is useful for checking whether two collections are completely separated, but it is not optimal for the need to determine whether the contents of two lists are "identical" or "not exactly".

Consider the following code example, which demonstrates the behavior of Collections.disjoint() when comparing lists:

 import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

public class ListComparisonExample {
    public static void main(String[] args) {
        ArrayList<string> properties = new ArrayList(Arrays.asList("A", "B"));
        ArrayList<arraylist>&gt; pairs = new ArrayList();

        pairs.add(new ArrayList(Arrays.asList("A", "C"))); // List 1
        pairs.add(new ArrayList(Arrays.asList("D", "C"))); // List 2
        pairs.add(new ArrayList(Arrays.asList("A", "B"))); // List 3

        System.out.println("Result of using Collections.disjoint():");
        for (int i = 0; i <p> Running the above code, the output will be:</p>
<pre class="brush:php;toolbar:false"> false
true
false

Let's analyze this output:

  • properties ("A", "B") and pairs.get(0) ("A", "C"): They have the common element "A", so disjoint returns false.
  • properties ("A", "B") and pairs.get(1) ("D", "C"): They have no elements in common, so disjoint returns true.
  • properties ("A", "B") and pairs.get(2) ("A", "B"): they have common elements "A" and "B", so disjoint returns false.

However, the user's expectation is that it returns false only when the two lists are exactly the same, and returns true otherwise. This means that for properties ("A", "B") and pairs.get(0) ("A", "C"), and for properties ("A", "B") and pairs.get(1) ("D", "C"), true should be returned. Returns false only if properties ("A", "B") and pairs.get(2) ("A", "B") are exactly the same. Obviously, the default behavior of Collections.disjoint() is inconsistent with this goal.

Exact comparison: Correct application of List.equals() method

To achieve the goal of "judging whether the contents of two lists are exactly the same (including elements and order), and returning the negative result (that is, not exactly the same)", the most direct and accurate method is to use the equals() method provided by the List interface.

For implementations of List interfaces such as ArrayList, the equals() method performs the following checks:

  1. First, check whether the two lists are references to the same object. If so, return true directly.
  2. If not the same object, check if they are the same size. If the sizes are different, return false.
  3. If the sizes are the same, they will be compared element by element and the elements at the corresponding positions are required to be equal. The equals() method returns true only when all elements at corresponding positions are equal.

Therefore, in order to determine whether two lists are "not identical", we only need to use !list1.equals(list2).

The following is a corrected code example using the List.equals() method:

 import java.util.ArrayList;
import java.util.Arrays;
// import java.util.Collections; // Collections.disjoint is no longer needed in this scenario

public class ListComparisonCorrected {
    public static void main(String[] args) {
        ArrayList<string> properties = new ArrayList(Arrays.asList("A", "B"));
        ArrayList<arraylist>&gt; pairs = new ArrayList();

        pairs.add(new ArrayList(Arrays.asList("A", "C")));
        pairs.add(new ArrayList(Arrays.asList("D", "C")));
        pairs.add(new ArrayList(Arrays.asList("A", "B")));

        System.out.println("Result of using !properties.equals(pairs.get(i)):");
        for (int i = 0; i <p> Running the corrected code, the output will be:</p>
<pre class="brush:php;toolbar:false"> true
true
false

Let's explain this output in detail:

  • properties ("A", "B") and pairs.get(0) ("A", "C"): These two lists are not equal, equals() returns false, and is true after negation.
  • properties ("A", "B") and pairs.get(1) ("D", "C"): These two lists are not equal, equals() returns false, and is true after negation.
  • properties ("A", "B") and pairs.get(2) ("A", "B"): These two lists are exactly equal, equals() returns true, and the negation is false.

This result exactly matches the output true true false expected by the user, and accurately implements the need to determine whether the list is "not exactly the same".

Notes and extended thoughts

When using List.equals() for list comparison, you need to pay attention to the following points:

  1. The order of elements is critical: The List.equals() method takes the order of elements into account when comparing. If two lists contain the same elements but in different orders, equals() will still return false. For example, the result of Arrays.asList("A", "B").equals(Arrays.asList("B", "A")) is false.

  2. Comparison that ignores order: If your need is to compare two lists to see if they contain the same set of elements, and you don't care about the order of the elements, you can convert them into Sets and then compare them. Set's equals() method does not consider the order of elements.

     import java.util.HashSet;
    import java.util.List;
    import java.util.Arrays;
    
    List<string> list1 = Arrays.asList("A", "B");
    List<string> list2 = Arrays.asList("B", "A");
    List<string> list3 = Arrays.asList("A", "C");
    
    System.out.println(new HashSet(list1).equals(new HashSet(list2))); // Output: true
    System.out.println(new HashSet(list1).equals(new HashSet(list3))); // Output: false</string></string></string>
  3. Element types and equals(): The element type stored in the list must correctly implement its own equals() method. If the element is a custom object and you do not override the equals() method, then the default equals() will perform a reference comparison, which may lead to unexpected results.

  4. Performance considerations: List.equals() usually requires O(n) time complexity, where n is the number of elements of the list (because it needs to compare elements one by one). This is an efficient comparison method for most application scenarios.

Summarize

When comparing list contents in Java, be sure to choose the appropriate API based on your actual needs. Collections.disjoint() is used to determine whether two collections are mutually exclusive (that is, they have no common elements), while List.equals() is used to determine whether the contents of two lists are exactly the same (including elements and order). Understanding the nuances of these methods can help developers write more accurate, robust, and expected code. When you need to determine whether two lists are "not identical", !list1.equals(list2) is the best practice.

The above is the detailed content of The same way to compare whether list contents are exactly the same in Java. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

ArtGPT

ArtGPT

AI image generator for creative art from text prompts.

Stock Market GPT

Stock Market GPT

AI powered investment research for smarter decisions

Popular tool

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to configure Spark distributed computing environment in Java_Java big data processing How to configure Spark distributed computing environment in Java_Java big data processing Mar 09, 2026 pm 08:45 PM

Spark cannot run in local mode, ClassNotFoundException: org.apache.spark.sql.SparkSession. This is the most common first step of getting stuck: even the dependencies are not correct. Only spark-core_2.12 is written in Maven, but spark-sql_2.12 is not added. SparkSession crashes as soon as it is built. The Scala version must strictly match the official Spark compiled version - Spark3.4.x uses Scala2.12 by default. If you use spark-sqljar of 2.13, the class loader cannot directly find the main class. Practical advice: Go to mvnre

How to safely map user-entered weekday string to integer value and implement date offset operation in Java How to safely map user-entered weekday string to integer value and implement date offset operation in Java Mar 09, 2026 pm 09:43 PM

This article introduces a concise and maintainable way to map the weekday string (such as "Monday") to the corresponding serial number (1-7), and use the modulo operation to realize the forward and backward offset of any number of days (such as Monday plus 4 days to get Friday), avoiding lengthy if chains and hard-coded logic.

How to use Homebrew to install Java on Mac_A must-have Java tool chain for developers How to use Homebrew to install Java on Mac_A must-have Java tool chain for developers Mar 09, 2026 pm 09:48 PM

Homebrew installs the latest stable version of openjdk (such as JDK22) by default, not the LTS version; you need to explicitly execute brewinstallopenjdk@17 or brewinstallopenjdk@21 to install the LTS version, and manually configure PATH and JAVA_HOME to be correctly recognized by the system and IDE.

What is exception masking (Suppressed Exceptions) in Java_Multiple resource shutdown exception handling What is exception masking (Suppressed Exceptions) in Java_Multiple resource shutdown exception handling Mar 10, 2026 pm 06:57 PM

What is SuppressedException: It is not "swallowed", but actively archived by the JVM. SuppressedException is not an exception loss, but the JVM quietly attaches the secondary exception to the main exception under the premise that "only one exception must be thrown" for you to verify afterwards. It is automatically triggered by the JVM in only two scenarios: one is that the resource closure in try-with-resources fails, and the other is that you manually call addSuppressed() in finally. The key difference is: the former is fully automatic and safe; the latter requires you to keep it to yourself, and it can be written as shadowing if you are not careful. try-

How to correctly implement runtime file writing in Java applications (avoiding JAR internal write failures) How to correctly implement runtime file writing in Java applications (avoiding JAR internal write failures) Mar 09, 2026 pm 07:57 PM

After a Java application is packaged as a JAR, data cannot be written directly to the resources in the JAR package (such as test.txt) because the JAR is essentially a read-only ZIP archive; the correct approach is to write variable data to an external path (such as a user directory, a temporary directory, or a configuration-specified path).

What is the underlying principle of array expansion in Java_Java memory dynamic adjustment analysis What is the underlying principle of array expansion in Java_Java memory dynamic adjustment analysis Mar 09, 2026 pm 09:45 PM

ArrayList.add() triggers expansion because grow() is called when size is equal to elementData.length. The first add allocates 10 capacity, and subsequent expansion is 1.5 times and not less than the minimum requirement, relying on delayed initialization and System.arraycopy optimization.

Complete tutorial on reading data from file and initializing two-dimensional array in Java Complete tutorial on reading data from file and initializing two-dimensional array in Java Mar 09, 2026 pm 09:18 PM

This article explains in detail how to load an integer sequence in an external text file into a Java two-dimensional array according to a specified row and column structure (such as 2500×100), avoiding manual assignment or index out-of-bounds, and ensuring accurate data order and robust and reusable code.

A concise method in Java to compare whether four byte values ​​are equal and non-zero A concise method in Java to compare whether four byte values ​​are equal and non-zero Mar 09, 2026 pm 09:40 PM

This article introduces several professional solutions for efficiently and safely comparing multiple byte type return values ​​(such as getPlayer()) in Java to see if they are all equal and non-zero. We recommend two methods, StreamAPI and logical expansion, to avoid Boolean and byte mis-comparison errors.

Related articles