Thread Synchronization related knowledge. Considerations for the Synchronized Method

Source: Internet
Author: User

During thread synchronization, synchronized is usually used to modify the method. Many people think that this lock is only used to lock the method, but its essence is to lock the object (such as object );

When a thread calls a synchronized modified method, other threads cannot call this method, that is, the current thread locks the method body;

However, other threads can call other non-synchronized methods of this object (Object A) to modify the values of some member variables of object; if you want to lock some variables of object A, they cannot be modified at the same time. Any method that modifies the variable must be modified with synchronized;

For the wait () method, this method is the method in the object. Its function is to pause the thread that currently calls a synchronized method. Note that it is the thread wait rather than the object wait, the wait method must be synchronized.

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.