Usage of Thread. Join ()

Source: Internet
Author: User

When the join method of another thread is called in the first thread, the thread is blocked until the end of the other thread.
For example

1 using System;
2
3 namespace TestThreadJoin
4 {
5 class Program
6 {
7 static void Main ()
8 {
9 System. Threading. Thread x = new System. Threading. Thread (new System. Threading. ThreadStart (f1 ));
10 x. Start ();
11 Console. WriteLine ("This is Main. {0}", 1 );
12 x. Join ();
13 Console. WriteLine ("This is Main. {0}", 2 );
14 Console. ReadLine ();
15}
16 static void f1 ()
17 {
18 System. Threading. Thread y = new System. Threading. Thread (new System. Threading. ThreadStart (f2 ));
19 y. Start ();
20 y. Join ();
21 Console. WriteLine ("This is F1. {0}", 1 );
22}
23
24 static void f2 ()
25 {
26 Console. WriteLine ("This is F2. {0}", 1 );
27}
28}
29}
There are three threads processing (including the main thread). You can check the execution result.
Result:
This is Main.1
This is F2.1
This is F1.1
This is Main.2

If: Comment // x. Join ();
Result:
This is Main.1
This is Main.2
This is F2.1
This is F1.1
 

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.