vote up 2 vote down star

Am I correct in saying that a .Net Hashtable is not synchronized while a Java Hashtable is? And at the same time a Java HashMap is not synchronized and has better performance?

I am rewriting a Java app that makes heavy use of HashMaps in C# and I would like to use a HashTable and ensure that the performance is basically equivalent.

flag

Your question is somewhat unclear about what your goals are in asking this question. Please consider revising a bit so it's more clear what you're hoping to learn exactly. – Jon Swinghammer Jul 31 at 1:14

1 Answer

vote up 4 vote down check

I think what you're asking is if HashMaps in Java and HashTables in C# act in roughly the same way and you're largely correct from a performance point of view. HashMaps as I recall do not complain if you insert duplicate keys whereas HashTable in C# will.

link|flag
Awesome! thanks – CountCet Jul 31 at 1:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.