I have a while loop to do string append using string buffer. What happens inside the jvm, since the append method is synchronized , does it check for lock every time on the object and proceeds when an append is called.
|
In some kind of theoretical sense the lock is acquired and released for every operation. In practice, for heavily used code paths, a lock coarsening optimisation is performed. So several operations in a row share the same lock acquire and release. Also note that it tends to be the same thread using the lock (it's a per-instance lock). Typical JVM implementations will bias the lock for use from a particular thread, making the whole process surprisingly fast. As other have alluded, there is very little need to use |
|||
|
|
|
Never mind that, just use
But to answer your question, read this: Java Tutorial > Synchronized Methods |
|||
|
|
|
Yes, the synchronization of That's the reason why the Note, however, that the performance loss of those |
||||
|
|
|
If you're not writing multithreaded code, there is no reason to use
|
|||||
|
|
Yes, the general rules of using synchronized method applies here. Also, if you are in a single-threaded scenario, consider using a |
|||
|
|
|
Even through StringBuffer is synchronized it is very difficult to use sensibly in multiple threads. i.e. if you are appending pieces of text in two threads like this.
Even though it is thread safe you can still get
and many other combinations. |
|||
|
|