Common methods of Thread class

Source: Internet
Author: User

/*

* Common methods of the thread class:

* 1.run (): Action performed by the current thread, to be written in run ()

* 2.start (): Starts the thread and executes the corresponding run ()

* 3.currentThread (): Gets the current thread

* 4.getName (): Gets the name of the current thread

* 5.setName (String name): Sets the name of the current thread

* 6.yield (): Frees the current thread for CPU usage

* 7.join (): Calling B.join () in a thread means: when the B thread finishes executing, the A thread resumes execution

* 8.isAlive (): Determine if the current thread is alive

*

* 9. Priority of Thread:

* Min_priority = 1

* Norm_priority = 5

* Max_priority = 10

* The priority of threads can be set and obtained through SetPriority () and getpriority ()

*

* 10. Thread communication: Wait () notify () Notifyall () is defined in the object class

*/




This article is from the "Mobile Platform Development" blog, make sure to keep this source http://liuxudong1001.blog.51cto.com/10877072/1826291

Common methods of Thread class

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.