/*
* 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