hmmm i'm trying to justify the use of synhronized statement vs Java Concurrent API for my SCJD..
so far the only reason I can give is it is more simple, easier to understand and cleaner.
are there any better technical reason?
|
hmmm i'm trying to justify the use of synhronized statement vs Java Concurrent API for my SCJD.. so far the only reason I can give is it is more simple, easier to understand and cleaner. are there any better technical reason? |
||||
|
|
|
The best reason is robustness. A lock must be released, and forgetting to do it, or not doing it properly (in a finally block) can have disastrous effects. Since synchronized protects a whole block of code or a method, and automatically releases the lock when the block or method ends, using it is safer and leads to less programming errors. |
|||
|
|