JAVA Multithreading Ticketing Problem __java

Source: Internet
Author: User
Define a class to implement the Runnable interface, define a ticketing method that needs to be synchronized, and then rewrite the Run method to call the ticketing sale method
Class Saleticket implements runnable{
	private int tickets =;
	
	
	Private synchronized void sale () {
		if (Tickets > 0) {
			System.out.println (Thread.CurrentThread (). GetName () + " Sell the first "+ (tickets--) +" Ticket ");
			
			try{
				Thread.Sleep (MB);
			catch (Interruptedexception e) {
				e.printstacktrace ();
	}}} public void Run () {while
		(Tickets > 0) {
			sale ();


}}} public class Javatest {public
		
	static void Main (string[] args) {


		Saleticket st = new Saleticket ();
		thread T1 = new Thread (ST, "one Window");
		Thread t2 = new Thread (St, "No. second Window");
		thread t3 = new Thread (St, "No. third Window");
		thread T4 = new Thread (St, "No. Fourth Window");
		T1.start ();
		T2.start ();
		T3.start ();
		T4.start ();
		
	
		
	}


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.