• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Synchronized block of code

 
Ranch Hand
Posts: 202
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got this code from K & B:



What is the logic behind the synchronization on the letter object? Can you put just any object inside the synchronization parentheses just to satisfy the requirement of synchronizing a block of code? I'm trying to learn the synchronization concepts of threads and I'm looking for a clear cut explanation on this concept.
 
author
Posts: 23958
142
jQuery Eclipse IDE Firefox Browser VI Editor C++ Chrome Java Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, you can practically use any object as the synchronization lock... but there is a reason why the stringbuffer was chosen. It is the same instance with all three threads, and synchronization was done to prevent the threads from stepping on each other.

So if you use any other object, you have to make sure that the three threads are using the same instance / object.

Henry
[ April 24, 2005: Message edited by: Henry Wong ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic