【发布时间】:2015-12-13 05:32:33
【问题描述】:
我基本上是在尝试实现一个多人在线预订一辆出租车的真实示例。在我的代码中,我有 3 个类——出租车、客户和服务器。
必须有多个客户(线程)和一个出租车。但我无法做到这一点。每次我创建新客户时,都会创建一个新的出租车实例。
这是出租车类代码-
public class taxi {
boolean BOOKED=false;
String id;
void book(){
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
BOOKED=true;
System.out.println("Customer "+Thread.currentThread().getName()+" BOOKED taxi");
}
void release(){
BOOKED=false;
System.out.println("Customer "+Thread.currentThread().getName()+" RELEASED taxi");
}
void setId(String id){
this.id=id;
}
String getId(){
return id;
}
}
客户类代码-
public class customer extends Thread {
taxi t=new taxi();
public void run(){
//System.out.println(t.hashCode());
t.setId(Thread.currentThread().getName());
System.out.println("Customer "+Thread.currentThread().getName()+" trying to BOOK taxi");
t.book();
System.out.println("Customer "+Thread.currentThread().getName()+" is currently USING taxi");
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("Customer "+Thread.currentThread().getName()+" RELEASING taxi");
t.release();
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("taxi used by customer "+Thread.currentThread().getName()+" set id to "+t.getId());
}
}
服务器类代码-
public class server {
public static void main(String args[]){
customer A=new customer();
customer B=new customer();
customer C=new customer();
customer D=new customer();
Thread t=new Thread();
A.setName("A");
B.setName("B");
C.setName("C");
D.setName("D");
A.start();
B.start();
C.start();
D.start();
}
}
这是我的输出-
Customer B trying to BOOK taxi
Customer D trying to BOOK taxi
Customer A trying to BOOK taxi
Customer C trying to BOOK taxi
Customer B BOOKED taxi
Customer A BOOKED taxi
Customer A is currently USING taxi
Customer D BOOKED taxi
Customer D is currently USING taxi
Customer B is currently USING taxi
Customer C BOOKED taxi
Customer C is currently USING taxi
Customer C RELEASING taxi
Customer C RELEASED taxi
Customer D RELEASING taxi
Customer D RELEASED taxi
Customer A RELEASING taxi
Customer A RELEASED taxi
Customer B RELEASING taxi
Customer B RELEASED taxi
taxi used by customer D set id to D
taxi used by customer C set id to C
taxi used by customer A set id to A
taxi used by customer B set id to B
如您所见,每辆出租车的 ID 不同,而不是相同。
请帮助。
【问题讨论】:
-
你认为
taxi t=new taxi();作为customer中的一个字段有什么作用? -
它在客户中创建了一个出租车实例。我知道这是我的问题的根本原因,但我想不出任何其他方法。
-
创建一个
taxi实例并在您的customer实例之间共享。你以前学过构造函数参数吗? -
是的,我知道客户的论点。你能告诉我这样做的确切代码吗?
-
不幸的是,没有。使用构造函数参数在每个
customer实例中设置taxi字段。使用相同的taxi实例作为您创建的每个customer的参数。
标签: java multithreading synchronization java-threads