The difference between the Run method and the Start method in Java thread

Source: Internet
Author: User

Tag: Run calls this BSP main thread through tar strong time slices


two ways to differentiate:

1.start method

Starting a thread with the Start method is a real implementation of multi-threading, starting a thread by invoking the start () method of the thread class, at which point the thread is in a ready (operational) state and is not running, and once the CPU time slice is taken, the run () method is started. Note, however, that you do not have to wait for the run () method to complete before you can proceed with the following code. So the run () method does not implement multithreading.

2.run method

The run () method is just a common method of the class, if you call the Run method directly, the program is still only the main thread, the program execution path is only one, or to execute sequentially, or to wait until the Run method body execution is completed before you can continue to execute the following code.

The difference between the Run method and the Start method in Java thread

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.