Re: Java datatypes question: the Set

2001-10-23 Thread Dmitri Colebatch
On Tue, 23 Oct 2001, paul wrote: Is java.util.HashTable any good - Original Message - From: Dr. Evil [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, October 20, 2001 4:15 AM Subject: Java datatypes question: the Set In the particular class that I'm working

Java datatypes question: the Set

2001-10-19 Thread Dr. Evil
In the particular class that I'm working on, it would be extremely handy to have an unordered collection of unique objects (strings) which can grow as necessary. This sounds exactly like the Set class. However, Set is an abstract class, so I can't instantiate it. Are there any non-abstract

I figured it out (was Re: Java datatypes question: the Set)

2001-10-19 Thread Dr. Evil
HashSet is what I want...