Aim of this program is to print 100 times A, 100 times B and 100 times C in a
synchronized manner by changing the content of StringBuffer object.
Program compiles with no error.But on executing program executes without producing any output. Means on giving command
c:\>
java p1.Synche
error -: it executes blank and terminates.
Program below creates three instances of "My" class which is subclass of
Thread class and these three instances share one StringBuffer object.
Please help me in debugging this program .
Thanks in advance.