Java multithreading: use three threads to control loop output 10 times ABC

Source: Internet
Author: User

Question: There are three threads A, B, and C. Thread A outputs thread A, thread B Outputs thread B, and thread C Outputs thread C. required. Three threads are started at the same time and output in sequence, loop 10 times.

Solution: to output ABC in sequence and loop for 10 times, it is necessary to control the synchronization of three threads, that is to say, to let three threads output in turn until all 10 ABC outputs end the thread. Here, a Lock object is used to control the synchronization of three threads. Use an int variable state to identify the output by that thread.

 

               state = 0                  Lock l =                   Thread A =  Thread(                                 (state<=30                      (state%3==0                         System.out.println("A"                         state ++              Thread B =  Thread(                                 (state<=30                      (state%3==1                         System.out.println("B"                         state ++              Thread C =  Thread(                                 (state<=30                      (state%3==2                         System.out.println("C"                         state ++           }

Running result:
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C
A
B
C

 

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.