Multi-thread execution sequence

Source: Internet
Author: User

At the same time, the CPU can only execute one thread

Therefore, other threads will be executed only when this thread is suspended or terminated.

 

Code

 Class Program
{

Public void Method1 ()
{
Console. WriteLine ("Method1 is the starting point of excution of the thread ");
}

Static void Main (string [] args)
{
Program newp = new Program ();
Thread thread1 = new Thread (new ThreadStart (newp. Method1 ));
Thread1.Start ();

// Position 1

Console. WriteLine ("The excution of Sample Thread has started ");

// 2 Location

Thread1.Abort ();

Console. ReadLine ();


}
}

 

If you place Thread. Sleep (100); at the 1 position, the output result is "Method1 is the starting point of excution of the thread"

If Thread. Sleep (100); is placed at 2, The output result is "The excution of Sample Thread has started"

 

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.