Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

HI could anyone please tell me the answers to following. --Is java.text.MessageFormat class thread safe??(y/n) --is it true that out of many format methods in java.text.MessageFormat only 1 is thread safe since it creates a local instance of MessageFormat every time.??(y/n)

can anyone provide an explannation also to above two questions? can anyone provide a code which shows java.text.MessageFormat is not threadsafe?

share|improve this question
1  
this sounds like homework. – mcfinnigan Sep 21 '11 at 12:52
If this is indeed homework, then tutor apparently want you to be able to find and understand javadocs :) Work on that. Javadocs are #1 source for answers you ever need on questions about some class. – BalusC Sep 21 '11 at 12:53

1 Answer

From the javadoc:

Synchronization

Message formats are not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally.

share|improve this answer
GMTA, I posted Exactly the same answer :D I deleted it. +1. – BalusC Sep 21 '11 at 12:52
thanks so much for your help – Vivek Sharma Feb 22 '12 at 12:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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