Hi all,
I'm kinda new to Threads, so I get a bit confused here.
Please consider the following code:
I'm creating two threads here, with both of them accessing the same sychronized method. AFAIK about threads, one
thread will access the synchronized method, and the other thread will have to wait until the first thread finishes. (pls correct me if I'm wrong

)
But, somehow that's not what happened. The output I'm getting is pretty much the same as a non-synchronized method.
Here's what I get on WindowsNT:
Shouldn't those two threads take turns in accessing a synchronized method?
please anyone enlightened me on this..

any help is highly appreciated
thanks in advance
- eric