-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.java
More file actions
58 lines (51 loc) · 2.28 KB
/
Test.java
File metadata and controls
58 lines (51 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package synchronousCollection;
/**
* Created by LXF on 2017/7/27.
*/
/*
*第三题:现有程序同时启动了4个线程去调用TestDo.doSome(key, value)方法,
* 由于TestDo.doSome(key, value)方法内的代码是先暂停1秒,然后再输出以秒为单位的当前时间值,
* 所以,会打印出4个相同的时间值,如下所示:
4:4:1258199615
1:1:1258199615
3:3:1258199615
1:2:1258199615
请修改代码,如果有几个线程调用TestDo.doSome(key, value)方法时,
传递进去的key相等(equals比较为true),则这几个线程应互斥排队输出结果,
即当有两个线程的key都是"1"时,它们中的一个要比另外其他线程晚1秒输出结果,
如下所示:
4:4:1258199615
1:1:1258199615
3:3:1258199615
1:2:1258199616
总之,当每个线程中指定的key相等时,这些相等key的线程应每隔一秒依次输出时间值(要用互斥),
如果key不同,则并行执行(相互之间不互斥)。原始代码如下:
*/
//不能改动此Test类
public class Test extends Thread{
private ThirdTestDo testDo;
private String key;
private String value;
public Test(String key,String key2,String value){
this.testDo = ThirdTestDo.getInstance();
/*常量"1"和"1"是同一个对象,下面这行代码就是要用"1"+""的方式产生新的对象,
以实现内容没有改变,仍然相等(都还为"1"),但对象却不再是同一个的效果*/
// this.key = key; 这样就可以互斥,是同一个引用
this.key = key+key2; //这边是不同的的引用
this.value = value;
}
public static void main(String[] args) throws InterruptedException{
Test a = new Test("1","","1");
Test b = new Test("1","","2");
Test c = new Test("3","","3");
Test d = new Test("4","","4");
System.out.println("begin:"+(System.currentTimeMillis()/1000));
a.start();
b.start();
c.start();
d.start();
}
public void run(){
testDo.doSome(key, value);
}
}