hashset鎬庝箞鍒犻櫎鎸囧畾鍏冪礌
瑕佷粠涓€涓狧ashSet涓垹闄ゆ寚瀹氬厓绱狅紝鍙互浣跨敤remove()鏂规硶銆傞鍏堬紝鍒涘缓涓€涓狧ashSet瀵硅薄锛屽苟娣诲姞鍏冪礌銆傜劧鍚庯紝璋冪敤remove()鏂规硶骞朵紶鍏ヨ鍒犻櫎鐨勫厓绱犱綔涓哄弬鏁般€傛渶鍚庯紝鍐嶆鎵撳嵃HashSet锛屽彲浠ョ湅鍒版寚瀹氬厓绱犲凡琚垹闄ゃ€?/p>
涓嬮潰鏄竴涓ず渚嬩唬鐮侊細
import java.util.HashSet;
public class Main {
public static void main(String[] args) {
// 鍒涘缓HashSet瀵硅薄骞舵坊鍔犲厓绱?/span>
HashSet<String> hashSet = new HashSet<>();
hashSet.add("鍏冪礌1");
hashSet.add("鍏冪礌2");
hashSet.add("鍏冪礌3");
System.out.println("鍒犻櫎鍓嶏細" + hashSet);
// 鍒犻櫎鎸囧畾鍏冪礌
hashSet.remove("鍏冪礌2");
System.out.println("鍒犻櫎鍚庯細" + hashSet);
}
}