코딩하던 중 여러 hashTable을 사용하게 되었다. 한 3개?? 재사용하기 위해서 메소드 찾아보던 중 clear() 라는 걸 발견 The java.util.Hashtable.clear() method in Java is used to clear and remove all of the keys from a specified Hashtable. Syntax: Hash_table.clear() Parameters: The method does not accept any parameters. Return Value: The method does not return any value. // Java code to illustrate the clear() method import java.util.*; publ..