aspose file tools
The moose likes Developer Certification (SCJD/OCMJD) and the fly likes synchronized vs ReentryReadWriteLock Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Developer Certification (SCJD/OCMJD)
Reply Bookmark "synchronized vs ReentryReadWriteLock" Watch "synchronized vs ReentryReadWriteLock" New topic
Author

synchronized vs ReentryReadWriteLock

Helen Ma
Ranch Hand

Joined: Nov 01, 2011
Posts: 451
1. sychronized (obj) means aquiring the lock of the object.
2. Consider the lock:


For synchronize keyword, it locks the object.
For lock, it does not lock any object. This lock is an indicator that indicates the code below it is mutal exclusive.
Is this true?
Roel De Nijs
Bartender

Joined: Jul 19, 2004
Posts: 4351

First of all: ReentryReadWriteLock is an unexisting class in JDK. I guess you meant ReentrantReadWriteLock.

Secondly I think Anayonkar Shivalkar gave an excellent explanation about that part of the new concurrency api in this post.


SCJA, SCJP (1.4 | 5.0 | 6.0), SCJD
http://www.javaroe.be/
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: synchronized vs ReentryReadWriteLock
 
Similar Threads
About Object lock
how can i achieve a 100% thread safty method ?
wait() in synchronized code ??
Creating multiple children threads
Is a monitor the same thing as a lock?