java.util.HashSet.size() 方法 java.util.HashSet.remove() 方法 java.util.HashMap.clear() 方法 java.util.HashSet.size() 方法 package com.codingdict; import java.util.*; public class HashSetDemo { public static void main(String args[]) { // create hash set HashSet <String> newset = new HashSet <String>(); // populate hash set newset.add("Learning"); newset.add("Easy"); newset.add("Simply"); System.out.println("Size of the set: "+newset.size()); } } java.util.HashSet.remove() 方法 java.util.HashMap.clear() 方法