HashSet remove() dùng để xóa phần tử được chỉ định trong HashSet. Nếu phần tử được chỉ định không chứa trong HashSet remove() sẽ trả về false.
Syntax
public boolean remove(Object o);
Ví dụ
import java.util.HashSet; public class Main { public static void main(String[] args) { HashSet<String> h = new HashSet<String>(); h.add("HGA"); h.add("SHI"); h.add("LFD"); System.out.println("HashSet ban dau: " + h); h.remove("HGA"); System.out.println("HashSet remove HGA " + h); System.out.println("Ket qua xoa ZZZ: " + h.remove("ZZZ")); } }
HashSet ban dau: [HGA, SHI, LFD]
HashSet remove HGA [SHI, LFD]
Ket qua xoa ZZZ: false