Sequential execution of "Java Concurrency" threads

Source: Internet
Author: User

1 /**2 * Question: Threads A, B, C, how do they execute sequentially? 3 * Method One: can be implemented using the Join () method4 * Mode two: Available Newsinglethreadexecutor ()5 * Created by Smile on 2018/8/12.6  */7  Public classThreadbyorder {8 9      Public Static voidMain (string[] args)throwsinterruptedexception {Ten  OneThread A =NewThread (NewThreadTest ("a")); AThread B =NewThread (NewThreadTest ("B")); -Thread C =NewThread (NewThreadTest ("C")); -  the         //Method One Realization - A.start (); - A.join (); - B.start (); + B.join (); - C.start (); +  AThread d =NewThread (NewThreadTest ("C")); atThread e =NewThread (NewThreadTest ("D")); -Thread f =NewThread (NewThreadTest ("E")); -         //Mode two realization -Executorservice Singlepool =executors.newsinglethreadexecutor (); - Singlepool.submit (d); - Singlepool.submit (e); in Singlepool.submit (f); - Singlepool.shutdown (); to     } +  -     Static classThreadTestImplementsrunnable{ the  *         PrivateString ThreadName; $ Panax Notoginseng          Publicthreadtest (String name) { -              This. ThreadName =name; the         } +  A          Publicthreadtest () { the         } +  -          Public voidrun () { $             if("a". Equals (threadname) | | " F. Equals (threadname)) $                 Try { -Thread.Sleep (5000); -}Catch(interruptedexception e) { the e.printstacktrace (); -                 }WuyiSYSTEM.OUT.PRINTLN ("Thread" +threadname+ "is running ..."); the         } -     } Wu}

Sequential execution of "Java Concurrency" threads

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.