要从HashSet中删除指定的元素,请使用remove()
方法。
首先,声明一个HashSet并添加元素-
Set<Integer> hs = new HashSet<Integer>(); hs.add(20); hs.add(39); hs.add(67); hs.add(79); hs.add(81); hs.add(87); hs.add(88);
假设您需要删除元素39。为此,请使用remove()
方法-
hs.remove(39);
以下是从HashSet中删除指定元素的示例-
import java.util.*; public class Demo { public static void main(String args[]) { Set<Integer> hs = new HashSet<Integer>(); hs.add(20); hs.add(39); hs.add(67); hs.add(79); hs.add(81); hs.add(87); hs.add(88); System.out.println("Elements = "+hs); //删除特定元素 hs.remove(39); System.out.println("Updated Elements = "+hs); } }
输出结果
Elements = [81, 67, 20, 39, 87, 88, 79] Updated Elements = [81, 67, 20, 87, 88, 79]