Testing Programs for process concurrency and testing of process concurrency

Source: Internet
Author: User

Testing Programs for process concurrency and testing of process concurrency

Here is a small example of interesting process concurrency:

Static void Main (string [] args) {new Thread (WriteX ). start (); new Thread (WriteY ). start (); WriteZ (); Console. readKey ();} static void WriteX () {Console. writeLine ($ "Thread No. X: {Thread. currentThread. managedThreadId} "); for (int I = 0; I <1000; I ++) Console. write ("x");} static void WriteY () {Console. writeLine ($ "Thread No. Y: {Thread. currentThread. managedThreadId} "); for (int I = 0; I <1000; I ++) Console. write ("y");} static void WriteZ () {Console. writeLine ($ "Thread No. Z: {Thread. currentThread. managedThreadId} "); for (int I = 0; I <1000; I ++) Console. write ("z ");}}

 

A total of three processes are opened, printing X, Y, and Z respectively to view the running results (each time it is random)

 

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.