Synchronized

M

Mr B

In my application I have two methods which can be run by an infinite
number of threads, the operation of the method is to output an array
of contents one line at a time. If I use the keyword synchronized on
the Display1 method then this works fine and not the outputs get
interupted by the other Display1 threads, likewise with Display2. But
is there are way that just these two particular methods can also not
interrupt each other aswell? At the moment they are giving me mixed
up output from the two seperate methods.

Thanks
Daniel
 
G

Gordon Beaton

If I use the keyword synchronized on the Display1 method then this
works fine and not the outputs get interupted by the other Display1
threads, likewise with Display2. But is there are way that just
these two particular methods can also not interrupt each other
aswell? At the moment they are giving me mixed up output from the
two seperate methods.

Instead of declaring the method synchronized, wrap the method body in
a synchronized block where you specify what object to synchronize on,
e.g.:

public void display() {
synchronized (obj) {
// do something here
}
}

Every block of code that synchronizes this way *and* specifies the
*same* obj will be mutually exclusive.

As was recommended elsewhere in this thread, I suggest you get
yourself a copy of Doug Lea's Concurrent Programming in Java.

/gordon
 
E

Eric Sosman

Mr B wrote On 03/14/07 11:38,:
In my application I have two methods which can be run by an infinite
number of threads,

Impressive. How long does it take to start them all?
the operation of the method is to output an array
of contents one line at a time. If I use the keyword synchronized on
the Display1 method then this works fine and not the outputs get
interupted by the other Display1 threads, likewise with Display2. But
is there are way that just these two particular methods can also not
interrupt each other aswell? At the moment they are giving me mixed
up output from the two seperate methods.

Synchronize on the same object. When you write
`synchronized' at the start of a method or block of code,
it means `synchronized(this)' or `synchronized(theClassObj)'
for a static method. If Display1 and Display2 synchronize
on different objects, nothing prevents them from running
at the same time.
 
A

Ashoka!

Mr B wrote On 03/14/07 11:38,:


Impressive. How long does it take to start them all?


Synchronize on the same object. When you write
`synchronized' at the start of a method or block of code,
it means `synchronized(this)' or `synchronized(theClassObj)'
for a static method. If Display1 and Display2 synchronize
on different objects, nothing prevents them from running
at the same time.


Just to add instead of adding synchronized key word to the method use

void Display1(Object x, any other parameters)
{
Synchronize(x)
{

//code goes here


}
}

void Display2(Object x, any other parameters)
{
Synchronize(x)
{

//code goes here


}
}

where x is any object but both functions must get same instance of x
e.g.

void main()
{
String lock = "This is the common lock";
display1(lock);//obvously these two calls are synchronus but you get
my point of same instance right?
display2(lock);
}

also look at the sempahore class for much better control of multiple
threads.

I hope this helps,
Usman
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,074
Latest member
StanleyFra

Latest Threads

Top