How can you say HashMap is syncronized?
Answers were Sorted based on User's Feedback
Answer / zohaib
if hashtable is syncronized then can any one tell me what
is the need of making hashtable syncronized tell me with
respect to application usage.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / aruna kadaari
By using the below statment we can stnchronize the hashmap
Hashmap hm = new Hashmap();
Map m = Collections.synchronizedMap(hm);
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / reddy edagottu
hasmap is syncronized why because if hashmap is processing
by one thread another thread will wait till the thread
comeout which currently processing after than only next
thread process the hashmap
| Is This Answer Correct ? | 2 Yes | 9 No |
Answer / reddy edagottu
HashMap is a collection class which is a syncronized class
why because if one thread is processing one process another
thread will wait for when running thread will comeout after
then only next thread will enter into that process that's
why it is syncronized
| Is This Answer Correct ? | 3 Yes | 12 No |
What are packages in java?
How are this() and super() used with constructors?
What class of exceptions are generated by the java run-time system?
For class CFoo { }; what default methods will the compiler generate for you>?
Can we define constructor in inner class?
In java, how many ways you can take input from the console?
Can vector have duplicates in java?
Which is illegal identifier in java?
What is static data type in java?
Where pragma is used?
What access modifiers can be used for class ?
Which of the classes will have more memory allocated?