-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSolution.java
More file actions
141 lines (109 loc) · 3.56 KB
/
Solution.java
File metadata and controls
141 lines (109 loc) · 3.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
//As you sent me into the world, even so I have sent them into the world. (John 17:18)
package com.javarush.task.task17.task1718;
/*
Глажка
*/
public class Solution {
public static void main(String[] args) {
Person diana = new Person("Diana");
Person igor = new Person("Igor");
diana.start();
igor.start();
}
public static class Person extends Thread { //Человек
public Person(String name) {
super(name);
}
@Override
public void run() {
synchronized(Iron.class) {
Iron iron = takeIron();
Clothes clothes = takeClothes();
ironing(iron, clothes);
returnIron();
}
}
protected Iron takeIron() {
System.out.println("Taking an Iron");
return new Iron();
}
protected Iron returnIron() {
System.out.println("Returning the Iron");
return new Iron();
}
protected Clothes takeClothes() {
return new Clothes("T-shirt");
}
protected void ironing(Iron iron, Clothes clothes) {
System.out.println(getName() + "'s ironing the " + clothes.name);
}
}
public static class Iron {
} //Утюг
public static class Clothes {//Одежда
String name;
public Clothes(String name) {
this.name = name;
}
}
}
/*
Глажка
И снова быт…
Поставьте один synchronized, чтобы diana и igor гладили по очереди, ведь утюг всего один!
Подсказка:
использовать блокировку на уровне класса.
Требования:
1. Класс Solution должен содержать public static класс Clothes.
2. Класс Solution должен содержать public static класс Iron.
3. Класс Solution должен содержать public static класс Person.
4. Класс Person должен быть нитью.
5. В методе run() класса Person должен быть synchronized блок.
6. Synchronized блок должен использовать блокировку на уровне класса.
package com.javarush.task.task17.task1718;
/*
Глажка
*/
public class Solution {
public static void main(String[] args) {
Person diana = new Person("Diana");
Person igor = new Person("Igor");
diana.start();
igor.start();
}
public static class Person extends Thread { //Человек
public Person(String name) {
super(name);
}
@Override
public void run() {
Iron iron = takeIron();
Clothes clothes = takeClothes();
ironing(iron, clothes);
returnIron();
}
protected Iron takeIron() {
System.out.println("Taking an Iron");
return new Iron();
}
protected Iron returnIron() {
System.out.println("Returning the Iron");
return new Iron();
}
protected Clothes takeClothes() {
return new Clothes("T-shirt");
}
protected void ironing(Iron iron, Clothes clothes) {
System.out.println(getName() + "'s ironing the " + clothes.name);
}
}
public static class Iron {
} //Утюг
public static class Clothes {//Одежда
String name;
public Clothes(String name) {
this.name = name;
}
}
}
*/