[Object-Oriented Design Basics] monitor

Source: Internet
Author: User

Author: gnuhpc
Source: http://www.cnblogs.com/gnuhpc/

1) Application Scenario: an object may need to access Shared resources to complete the services it provides. In the case of multiple threads, the combination of multiple such objects will produce unexpected consequences, for example, competition. The monitor sets a lock on such an object to ensure that only one thread can execute any method on this object within a given time.

2) Example: Create a logging class

Public class filelogger {
PublicSynchronizedVoid log (string MSG ){
Dataoutputstream dos = NULL;
Try {
DOS = new dataoutputstream (
New fileoutputstream ("log.txt", true ));
Dos. writebytes (MSG );
Dos. Close ();
} Catch (filenotfoundexception ex ){
//
}
Catch (ioexception ex ){
//
}
}
}

When a thread executes a synchronization method to an object, it gets a lock for this object. When this method is executed, the thread holds this lock to know that the method is running ended, during this period, other threads cannot obtain the lock and therefore cannot execute this method. Of course, the synchronization method is at the cost of running speed overhead.

 

Author: gnuhpc
Source: http://www.cnblogs.com/gnuhpc/

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.