In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "how to use Java multithreading to achieve train ticketing system", the content of the article is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "how to use Java multithreading to achieve train ticketing system" bar!
Java multithreaded train ticketing (the difference between Thread and Runnable)
There are two ways to implement multithreading in java.
Inheriting Thread class to implement Runnable interface
Inherits the class of the Thread class, uses the object .start () to start the thread to implement the class of the Runnable class, and uses new Thread (the implementation class of new Runnable ()). Start () to start
Here is a classic example that works well with a class that implements the Runnable interface.
A simple analysis of train ticketing:
1. The number of votes is shared, so you can't buy a ticket multiple times. two。 At the same time, there are multiple ticket outlets selling tickets, that is, multiple threads exist. 3. When a ticket office is selling tickets, other ticket outlets cannot intervene, and synchronous locks can be used here.
The code is as follows:
Test class
Public class TicketsTest {public static void main (String [] args) {SakeTickets st = new SakeTickets (); Thread [] t = new Thread [3]; for (int I = 0; I
< t.length; i++) { t[i] = new Thread(st,"售票口"+(i+1)); t[i].start(); } } } 实现Runnable接口的售票类 public class SakeTickets implements Runnable{private int totalTickets =200;public void run(){ while(totalTickets>0) sale ();} public void sale () {synchronized (this) {String name = Thread.currentThread () .getName (); if (totalTickets==0) System.out.println (name+ "tickets are sold out.") ; else {totalTickets--; try {Thread.sleep (57);} catch (InterruptedException e) {e.printStackTrace ();} System.out.printf (name+ "sold one ticket, left:%-3D.\ n", totalTickets);}
The difference between Thread and Runnable
If a class inherits Thread, it is not suitable for resource sharing. However, if you implement the Runable interface, it is easy to achieve resource sharing.
Thank you for reading, the above is the content of "how to use Java multithread to achieve train ticketing system". After the study of this article, I believe you have a deeper understanding of how to use Java multithread to achieve train ticketing system, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.