JAV 如何将A数组中包含B数组的数据删除
时间: 2023-06-12 16:05:33 浏览: 84
java删除数组中的某一个元素的方法
可以使用 Java 中的 ArrayList 类和 removeAll() 方法来实现将 A 数组中包含 B 数组的数据删除。
具体步骤如下:
1. 将数组 A 和 B 转换成 ArrayList 对象,例如:
```
ArrayList<Integer> listA = new ArrayList<>(Arrays.asList(A));
ArrayList<Integer> listB = new ArrayList<>(Arrays.asList(B));
```
2. 调用 listA 的 removeAll() 方法,将 listB 中包含的元素从 listA 中删除,例如:
```
listA.removeAll(listB);
```
3. 将删除后的结果转换回数组,例如:
```
A = listA.toArray(new Integer[0]);
```
完整代码示例:
```
import java.util.*;
public class Main {
public static void main(String[] args) {
Integer[] A = {1, 2, 3, 4, 5};
Integer[] B = {2, 4, 6};
ArrayList<Integer> listA = new ArrayList<>(Arrays.asList(A));
ArrayList<Integer> listB = new ArrayList<>(Arrays.asList(B));
listA.removeAll(listB);
A = listA.toArray(new Integer[0]);
System.out.println(Arrays.toString(A)); // [1, 3, 5]
}
}
```
阅读全文