Forums Register Login

Thread Doubt

+Pie Number of slices to send: Send
public class newqw implements Runnable {
public static void main(String[] args) {
new Thread(new newqw("Wallace")).start() ;
new Thread(new newqw("Gromit")).start();
}
private String name;
public newqw(String name) { this.name = name; }
public void run() {
message(1);
message(2);
}
private synchronized void message(int n) {
System.out.print(name + "-" + n + " ");
}
}

why is the above code printing different answers at different times? what should i do to get a same answer always?
+Pie Number of slices to send: Send
Hi,


why is the above code printing different answers at different times? what should i do to get a same answer always?



Dismantle your system and change your processor. Just kidding. This is what expected regarding the behaviour of thread. Thereads dont run the way you like, it is totally under the control of the JVM. You don't have to worry about this.

Regards,
Jothi Shankar Kumar. S
+Pie Number of slices to send: Send
Hi,

I believe the problem is that you created a new Runnable object for each thread and you're using these different objects for synchronization. Since each thread is looking to obtain a different object lock (each thread is looking to obtain it's own Runnable object's lock) none of them will encounter a situation where they are blocked and cannot obtain the lock they're looking for, so really there's no sychronization.

I think one possible solution would be to create a static reference variable in the Runnable class (so just 1 lock is available) and sychronize the code in your run method on that (see below).

this llama doesn't want your drama, he just wants this tiny ad for his mama
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 638 times.
Similar Threads
Problem with Chapter 9 Question 1
answer of this code
please Explain This question
Question about threads in Kathy's Book.I don't understand.
thread doubt
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 03:52:18.