當前有許多的Java項目都應用了多線程的內(nèi)容,以此提高處理性能。下面,將通過簡單的售票功能來展示Java中多線程具體的使用方法,以此來提高對Java多線程的理解。
一、創(chuàng)建
二、完整代碼
package com.ql;
import lombok.SneakyThrows;
import okhttp3.Call;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.Response;
import java.io.IOException;
public class Mythread extends Thread {
public Mythread(String name) {
super(name);
}
@SneakyThrows
@Override
public void run() {
for (; ; ) {
//鎖的狀態(tài)是默認是打開狀態(tài)
//獲取鎖的狀態(tài)
int lockStatus = this.findLockStatus();
if (lockStatus == 0) {
//修改鎖的狀態(tài) =>>鎖定
this.locked();
//獲取總票數(shù)
int tickets = this.findTickets();
//剩余票數(shù)
int i = this.remainVotes();
//判斷票數(shù)
if (tickets < 1) {
//已售賣完 跳出循環(huán)
break;
} else {
//賣一張票
int remainVotes = this.saleOneTicket();
System.out.println(this.getName() + "當前的票數(shù):" + tickets);
System.out.println(this.getName() + "售票后:" + remainVotes);
// 釋放鎖
this.unlock();
}
}
}
}
/**
* 剩余票數(shù)
*
* @return
* @throws IOException
*/
private int remainVotes() throws IOException, InterruptedException {
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder().url("http://localhost:8080/lock/remainVotes").build();
Call call = okHttpClient.newCall(request);
Response response = call.execute();
String string = response.body().string();
int ticketsVote = Integer.parseInt(string);
return ticketsVote;
}
/**
* 釋放鎖
*/
private void unlock() throws IOException {
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder().url("http://localhost:8080/lock/unlock").build();
Call call = okHttpClient.newCall(request);
Response response = call.execute();
}
/**
* 賣票一張
*/
private int saleOneTicket() throws IOException {
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder().url("http://localhost:8080/lock/saleOneTicket").build();
Call call = okHttpClient.newCall(request);
Response response = call.execute();
String string = response.body().string();
int remainVotes = Integer.parseInt(string);
return remainVotes;
}
/**
* 獲取鎖的狀態(tài)
*/
private int findLockStatus() throws IOException {
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder().url("http://localhost:8080/lock/findLock").build();
Call call = okHttpClient.newCall(request);
Response response = call.execute();
String string = response.body().string();
int lockStatus = Integer.parseInt(string);
return lockStatus;
}
/**
* 修改鎖狀態(tài)
*/
private int locked() throws IOException {
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder().url("http://localhost:8080/lock/locked").build();
Call call = okHttpClient.newCall(request);
Response response = call.execute();
String string = response.body().string();
int lockStatus = Integer.parseInt(string);
return lockStatus;
}
/**
* 查看總票數(shù)
*
* @throws IOException
*/
private int findTickets() throws IOException {
OkHttpClient okHttpClient = new OkHttpClient();
Request request = new Request.Builder().url("http://localhost:8080/lock/findTickets").build();
Call call = okHttpClient.newCall(request);
Response response = call.execute();
String string = response.body().string();
Integer tickets = Integer.parseInt(string);
return tickets;
}
}
package com.ql;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/lock")
public class ClientService {
/**
* 總票數(shù)
*/
private static Integer tickets = 100;
/**
* 鎖的狀態(tài) 0:未鎖 1:鎖
*/
private static Integer lockStatus = 0;
/**
* 賣票
*/
@RequestMapping("/saleOneTicket")
public Integer saleOneTicket() {
return tickets = tickets - 1;
}
/**
* 查看總票數(shù)
*/
@RequestMapping("/findTickets")
public Integer findTickets() {
return tickets;
}
/**
* 查看鎖的狀態(tài)
*/
@RequestMapping("/findLock")
public synchronized Integer findLock() {
Integer lock=lockStatus;
//改變鎖狀態(tài),使線程串行執(zhí)行
this.locked();
return lock;
}
/**
* 改變鎖狀態(tài)
*/
@RequestMapping("/locked")
public synchronized int locked() {
//更改鎖的狀態(tài)為1(上鎖),避免多個線程同時獲取鎖的狀態(tài)都為0(未上鎖),從而導致線程安全問題
lockStatus = 1;
return lockStatus;
}
/**
* 釋放鎖
*/
@RequestMapping("/unlock")
public synchronized int unlock() {
return lockStatus = 0;
}
/**
* 剩余票數(shù)
*
* @return
*/
@RequestMapping("/remainVotes")
public int remainVotes() {
return tickets;
}
}
三、流程圖解析
到此這篇關于使用Java多線程來實現(xiàn)售票功能的文章就介紹到這了,想要了解更多相關Java多線程實戰(zhàn)項目的內(nèi)容,請搜索W3Cschool以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持!