java set removeall_Java TreeSet removeAll()用法及代码示例

java.util.TreeSet类的removeAll()方法用于从该集合中删除所有包含在指定集合中的元素。

用法:

public boolean removeAll(Collection c)

参数:此方法将集合c作为包含要从此集合中删除的元素的参数。

返回值:如果此集合因调用而更改,则此方法返回true。

异常:如果此集合包含null元素并且指定的集合不允许null元素(可选),或者指定的collection为null,则此方法引发NullPointerException。

以下示例说明了removeAll()方法。

示例1:

// Java program to demonstrate

// removeAll() method for Integer value

import java.util.*;

public class GFG1 {

public static void main(String[] argv) throws Exception

{

try {

// Creating object of TreeSet

TreeSet

set1 = new TreeSet();

// Populating set1

set1.add(1);

set1.add(2);

set1.add(3);

set1.add(4);

set1.add(5);

// print set1

System.out.println("TreeSet before "

+ "removeAll() operation : "

+ set1);

// Creating another object of  TreeSet

TreeSet

set2 = new TreeSet();

set2.add(1);

set2.add(2);

set2.add(3);

// print set2

System.out.println("Collection Elements"

+ " to be removed : "

+ set2);

// Removing elements from set

// specified in set2

// using removeAll() method

set1.removeAll(set2);

// print set1

System.out.println("TreeSet after "

+ "removeAll() operation : "

+ set1);

}

catch (NullPointerException e) {

System.out.println("Exception thrown : " + e);

}

}

}

输出:

TreeSet before removeAll() operation : [1, 2, 3, 4, 5]

Collection Elements to be removed : [1, 2, 3]

TreeSet after removeAll() operation : [4, 5]

示例2:对于NullPointerException

// Java program to demonstrate

// removeAll() method for Integer value

import java.util.*;

public class GFG1 {

public static void main(String[] argv) throws Exception

{

try {

// Creating object of TreeSet

TreeSet

set1 = new TreeSet();

// Populating set1

set1.add(1);

set1.add(2);

set1.add(3);

set1.add(4);

set1.add(5);

// print set1

System.out.println("TreeSet before "

+ "removeAll() operation : "

+ set1);

// Creating another object of  TreeSet

TreeSet

set2 = null;

// print set2

System.out.println("Collection Elements"

+ " to be removed : "

+ set2);

System.out.println("\nTrying to pass "

+ "null as a specified element\n");

// Removing elements from set

// specified in set2

// using removeAll() method

set1.removeAll(set2);

// print set1

System.out.println("TreeSet after "

+ "removeAll() operation : "

+ set1);

}

catch (NullPointerException e) {

System.out.println("Exception thrown : " + e);

}

}

}

输出:

TreeSet before removeAll() operation : [1, 2, 3, 4, 5]

Collection Elements to be removed : null

Trying to pass null as a specified element

Exception thrown : java.lang.NullPointerException

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值