Home > Java > javaTutorial > body text

Java Example - Array Subtraction

黄舟
Release: 2017-02-21 09:38:36
Original
1353 people have browsed it

The following example demonstrates how to use the removeAll () method to calculate the difference between two arrays:

/*
 author by w3cschool.cc
 文件名:Main.java
 */import java.util.ArrayList;public class Main {
   public static void main(String[] args)  {
      ArrayList objArray = new ArrayList();
      ArrayList objArray2 = new ArrayList();
      objArray2.add(0,"common1");
      objArray2.add(1,"common2");
      objArray2.add(2,"notcommon");
      objArray2.add(3,"notcommon1");
      objArray.add(0,"common1");
      objArray.add(1,"common2");
      objArray.add(2,"notcommon2");
      System.out.println("array1 的元素" +objArray);
      System.out.println("array2 的元素" +objArray2);
      objArray.removeAll(objArray2);
      System.out.println("array1 与 array2 数组差集为:"+objArray);
   }}
Copy after login

The output result of running the above code is:

array1 的元素[common1, common2, notcommon2]
array2 的元素[common1, common2, notcommon, notcommon1]
array1 与 array2 数组差集为:[notcommon2]
Copy after login

The above is the Java example - Array difference set content, for more related content, please pay attention to the PHP Chinese website (www.php.cn)!



Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!