The Artima Developer Community
Sponsored Link

Legacy Java Answers Forum
December 2000

Advertisement

Advertisement

This page contains an archived post to the Java Answers Forum made prior to February 25, 2002. If you wish to participate in discussions, please visit the new Artima Forums.

Message:

Re: Java class hierarchy

Posted by Ahmed Ashour on December 18, 2000 at 8:18 AM

If you want to have a lock object in an instance

e.g.

class your_class {

Object lockObject = new Object();

public void amethod() {
synchronized( lockObject ) {
..........
}
}

}



Replies:

Sponsored Links



Google
  Web Artima.com   
Copyright © 1996-2009 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use - Advertise with Us