What is the difference between the sleep () method of the thread class and the Wait () method of the object that allows the thread to pause execution? What is the difference between the sleep () method of a thread and the yield () method?

Source: Internet
Author: User
Tags thread class

What is the difference between the sleep () method of the thread class and the Wait () method of the object that allows the thread to pause execution?

The Sleep () method (Hibernate) is a static method of the thread class (threads), which causes the current thread to pause execution for a specified time, giving the execution opportunity (CPU) to another thread, but the lock on the object remains , so that it is automatically restored after the sleep time has ended . Wait () is a method of the object class, and the Wait () method of the calling objects causes the current thread to discard the lock on the object (the thread pauses execution), into the object's wait pool (wait pools), only the Notify () method of the calling object (or Notifyall () method) to wake the thread in the wait pool into the lock pool, and if the thread re-obtains the lock on the object, it can enter the ready state.

What is the difference between the sleep () method of a thread and the yield () method?

The ①sleep () method gives other threads the opportunity to run without taking into account the priority of the thread, thus giving the low-priority thread a chance to run ;

The yield () method will only give the same priority or higher priority to the thread to run the opportunity ;
The ② thread executes the sleep () method and then goes into a blocking (blocked) state , and the yield () method is transferred to the ready state ;
The ③sleep () method declaration throws interruptedexception, and the yield () method does not declare any exceptions;
The ④sleep () method is more portable than the yield () method, which is related to operating system CPU scheduling.

What is the difference between the sleep () method of the thread class and the Wait () method of the object that allows the thread to pause execution? What is the difference between the sleep () method of a thread and the yield () method?

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.