扫描二维码下载沐宇APP

沐宇

微信扫码使用沐宇小程序

沐宇

hashset鎬庝箞鍒犻櫎鎸囧畾鍏冪礌

扬州沐宇科技
2023-12-16 01:13:08
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);
    }
}

扫码添加客服微信