Java thread Start () and run () methods to analyze _java

Source: Internet
Author: User
Tags thread class
1.start () method to start a thread, which really implements multithreading, without waiting for the Run method body code to complete and proceed directly to the following code:
Start a thread by invoking the start () method of the thread class.
This thread is in the ready state,
And not run.
This thread class then invokes method run () to complete its operation.
Here the method run () is called the thread body,
It contains the contents of this thread to be executed,
The Run method runs the end,
This thread terminates,
While the CPU is running another thread,

The 2.run () method is invoked as a normal method, whether the program will execute sequentially or wait until the Run method body completes execution before proceeding to the following code:
And if you use the Run method directly,
It's just a call to a method,
There's still only the main thread in the program--this one,
Its program execution path is still only one line,
This does not achieve the purpose of writing threads.
Related Article

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.