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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606 |
------------------------------------------------------------------------------------------
package chap06;
import javax.swing.JFrame;
public class AWTThread {
public static void main(String[] args) {
ThreadGroup group = Thread.currentThread().getThreadGroup();
group.list();
JFrame frame = new JFrame("AWTThread");
group.list();
frame.setSize(150, 100);
frame.setVisible(true);
group.list();
}
}
------------------------------------------------------------------------------------------
package chap06;
public class Bread {
public static void main(String[] args) {
int bbang = 10;
System.out.printf("창고의 현재 빵의 재고량:%d%n", bbang);
GoodsHouse gh = new GoodsHouse(10);
Consumer c1 = new Consumer(gh);
Procedur p1 = new Procedur(gh);
Thread t1 = new Thread(c1);
Thread t2 = new Thread(p1);
t1.start();
t2.start();
}
}
class GoodsHouse {
private int house;
public GoodsHouse(int house) {
this.house = house;
}
public void setHouse(int house) {
this.house = house;
}
public int getHouse() {
return house;
}
}
class Consumer implements Runnable {
GoodsHouse gh;
Consumer(GoodsHouse gh) {
this.gh = gh;
}
public void run() {
while (true) {
synchronized (gh) {
int house = gh.getHouse();
System.out.printf("<소비자> 빵의 현재 갯수:%d%n", --house);
gh.setHouse(house);
}
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
}
}
}
class Procedur implements Runnable {
GoodsHouse gh;
Procedur(GoodsHouse gh) {
this.gh = gh;
}
public void run() {
while (true) {
synchronized (gh) {
int house = gh.getHouse();
System.out.printf("<생산자> 빵의 현재 갯수:%d%n", ++house);
gh.setHouse(house);
}
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class DaemonThread {
public static void main(String[] args) {
RunnableClass2 runnable = new RunnableClass2();
Thread thread = new Thread(runnable);
thread.setDaemon(true);
thread.start();
try {
Thread.sleep(5000);
} catch (InterruptedException ie) {
}
Thread user = Thread.currentThread();
System.out.println("DaemonThread:" + user.getName());
System.out.println("DaemonThread:" + user.isDaemon());
System.out.println("DaemonThread: main() end.");
}
}
class RunnableClass2 implements Runnable {
private Thread current;
private boolean running = true;
public void run() {
current = Thread.currentThread();
while (running) {
try {
Thread.sleep(1000);
System.out.println("RunnableClass:" + current.getName());
} catch (InterruptedException ie) {
System.out.println("RunnableClass:" + ie.getMessage());
}
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class DemmonThreadClass {
public static void main(String[] args) {
DemmonThread dt = new DemmonThread();
Thread t1 = new Thread(dt, "쓰레드1:");
Thread t2 = new Thread(dt, "쓰레드2:");
t1.setDaemon(true);
t2.setDaemon(false);
t1.start();
t2.start();
}
}
class DemmonThread implements Runnable {
public void run() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
}
System.out.printf("%d번째 -> %s : 데몬상태 : %s %n", i, Thread.currentThread().getName(),
(Thread.currentThread().isDaemon()) ? "데몬쓰레드(O)" : "데몬쓰레드(X)");
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class Rectangle extends Shape implements Runnable {
public Rectangle(double width) {
super(width);
}
public Rectangle(double height, double width) {
super(height, width);
}
public double area() {
return getWidth() * getHeight();
}
public double round() {
return (getWidth() + getHeight()) * 2;
}
public void run() {
System.out.printf("사각형의 넓이는 :%f%n", area());
System.out.printf("사각형의 둘레는 :%f%n", round());
}
}
------------------------------------------------------------------------------------------
package chap06;
import javax.swing.JFrame;
public class RunnableSample1 extends JFrame implements Runnable {
String name;
RunnableSample1(String name) {
this.name = name;
}
public static void main(String[] args) {
RunnableSample1 rs = new RunnableSample1("Runnable 클래스1");
Thread t1 = new Thread(rs);
Thread t2 = new Thread(new RunnableSample1("Runnable클래스1"));
Thread t3 = new Thread(new RunnableSample1("Runnable클래스2"));
Thread t4 = new Thread(new RunnableSample1("Runnable클래스3"));
t1.start();
t2.start();
t3.start();
t4.start();
t1 = new Thread(rs);
t1.start();
}
public void run() {
for (int i = 0; i < 100; i++) {
System.out.printf("%s => %d%n", name, i);
try {
Thread.sleep(100);
} catch (Exception e) {
}
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public abstract class Shape {
private double height, width;
public abstract double area();
public abstract double round();
public Shape(double width) {
super();
this.width = width;
}
public Shape(double height, double width) {
super();
this.height = height;
this.width = width;
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public double getHeight() {
return height;
}
public void setHeight(double height) {
this.height = height;
}
}
------------------------------------------------------------------------------------------
package chap06;
public class ShapeAreaRound {
public static void main(String[] args) {
// Rectangle r=new Rectangle(10,12.3);
// Triangle t=new Triangle(10,12.3);
// Thread t1=new Thread(r);
// Thread t2=new Thread(t);
// t1.start();
// t2.start();
Rectangle r = null;
Triangle t = null;
Thread t1 = null;
Thread t2 = null;
for (double w = 1.5, h = 3.5; w < 10.0 || h < 7.5; w += 0.05, h += 0.06) {
r = new Rectangle(w, h);
t = new Triangle(w, h);
t1 = new Thread(r);
t2 = new Thread(t);
t1.start();
t2.start();
try {
Thread.sleep(10000000);
} catch (Exception e) {
}
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class StopThread {
public static void main(String[] args) {
RunnableClass runnable = new RunnableClass();
Thread thread = new Thread(runnable);
thread.start();
try {
Thread.sleep(3000);
;
} catch (InterruptedException ie) {
runnable.stop();
System.out.println("StopThread: main() end.");
}
}
}
class RunnableClass implements Runnable {
private Thread current;
private boolean running = true;
public void stop() {
running = false;
current.interrupt();
}
public void run() {
current = Thread.currentThread();
while (running) {
try {
Thread.sleep(1);// stop check here
System.out.println("RunnableClass: running.");
for (int i = 0; i < 100000000; i++) {
}
Thread.sleep(1);// stop check here
} catch (InterruptedException ie) {
System.out.println("run() : " + ie.getMessage());
}
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class ThreadForExample {
public static void main(String[] args) {
ThreadFor tf = new ThreadFor();
tf.start();
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
System.out.printf("main메소드 : %d%n", i);
}
}
}
class ThreadFor extends Thread {
public void run() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(100);
} catch (InterruptedException e) {
}
System.out.printf("main메소드 : %d%n", i);
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class ThreadGroupClass {
public static void main(String[] args) {
ThreadGroup tg = new ThreadGroup("그룹1");
ThreadGroup tg1 = new ThreadGroup(tg, "그룹2");
ThreadGroup tg2 = new ThreadGroup(tg1, "그룹3");
ThreadGroupRunnable a, b;
a = new ThreadGroupRunnable();
b = new ThreadGroupRunnable();
Thread t1, t2, t3, t4;
t1 = new Thread(tg, a, "쓰레드1");
t2 = new Thread(tg1, a, "쓰레드2");
t3 = new Thread(tg2, b, "쓰레드3");
t4 = new Thread(tg2, b, "쓰레드4");
t1.start();
t2.start();
t3.start();
t4.start();
}
}
class ThreadGroupRunnable implements Runnable {
public void run() {
for (int i = 0; i < 100; i++) {
System.out.printf("%d번째 그룹:%s, 쓰레드명:%s%n", i,
Thread.currentThread().getThreadGroup().getName(),
Thread.currentThread().getName());
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class ThreadJoinClass {
public static void main(String[] args) {
ThreadJoin td = new ThreadJoin();
Thread t = new Thread(td, "첫번쨰 쓰레드");
Thread t1 = new Thread(td, "두번쨰 쓰레드");
td.thread = t;
t.start();
td.thread = t1;
t1.start();
System.out.println("join 메소드 실행 시작");
try {
t.join(10);
} catch (InterruptedException e) {
}
System.out.println("join 매소드 실행 종료");
}
}
class ThreadJoin implements Runnable {
Thread thread;
public void run() {
System.out.println("run 메소드 실행 시작" + thread.getName());
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
}
System.out.println("run 메소드 실행 종료" + thread.getName());
}
}
------------------------------------------------------------------------------------------
package chap06;
public class ThreadPriority {
public static void main(String[] args) {
ThreadPriorityClass tc = new ThreadPriorityClass();
Thread t1 = new Thread(tc, "Thread 1:");
Thread t2 = new Thread(tc, "Thread 2:");
Thread t3 = new Thread(tc, "Thread 3:");
t1.setPriority(Thread.MAX_PRIORITY);
t2.setPriority(Thread.MIN_PRIORITY);
t3.setPriority(Thread.NORM_PRIORITY);
t1.start();
t2.start();
t3.start();
}
}
class ThreadPriorityClass implements Runnable {
public void run() {
for (int i = 0; i < 100; i++) {
try {
Thread.sleep(10);
} catch (InterruptedException e) {
}
System.out.printf("쓰레드명:%s -> 우선순위 %d%n",
Thread.currentThread().getName(),
Thread.currentThread().getPriority());
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class ThreadSample1 extends Thread {
String name;
ThreadSample1(String name) {
this.name = name;
}
public static void main(String[] args) throws Exception {
ThreadSample1 ts1 = new ThreadSample1("쓰레드1");
ThreadSample1 ts2 = new ThreadSample1("쓰레드2");
ThreadSample1 ts3 = new ThreadSample1("쓰레드3");
ThreadSample1 ts4 = new ThreadSample1("쓰레드4");
ts1.start();
ts2.start();
ts3.start();
ts4.start();
}
public void run() {
for (int i = 0; i < 100; i++) {
System.out.printf("%s => %d%n", name, i);
try {
Thread.sleep(100);
} catch (Exception e) {
}
}
}
}
------------------------------------------------------------------------------------------
package chap06;
public class Triangle extends Shape implements Runnable {
public Triangle(double width) {
super(width);
}
public Triangle(double height, double width) {
super(height, width);
}
public void run() {
System.out.printf("삼각형의 넓이는 :%f%n", area());
System.out.printf("삼각형의 둘레는 :%f%n", round());
}
public double area() {
return getWidth() * getHeight() / 2;
}
public double round() {
return getWidth() + getHeight();
}
}
------------------------------------------------------------------------------------------
package chap06;
public class WaitThread {
public static void main(String[] args) {
RunnableClass1 runnable = new RunnableClass1();
Thread thread = new Thread(runnable);
thread.start();
for (int i = 0; i < 5; i++) {
try {
Thread.sleep(1000);
runnable.loop();
} catch (InterruptedException ie) {
}
}
runnable.stop();
System.out.println("WaitThread:main()");
}
}
class RunnableClass1 implements Runnable {
private Thread current;
private boolean running = true;
private boolean waiting;
private int interval = 500;
public void stop() {
running = false;
current.interrupt();
}
public synchronized void loop() {
waiting = !waiting;
if (!waiting) {
String name = Thread.currentThread().getName();
System.out.println(name + ":RunnableClass: notify.");
notify();
}
Thread.yield();
}
public void run() {
current = Thread.currentThread();
String name = current.getName();
while (running) {
try {
synchronized (this) {
if (waiting) {
System.out.println(name + ":RunnableClass:wait.");
wait();
} else {
Thread.sleep(interval);
System.out.println(name + ":RunnableClass:skip.");
}
}
} catch (InterruptedException ie) {
System.err.println(name + ":RunnableClass:" + ie.getMessage());
}
}
}
}
------------------------------------------------------------------------------------------ |
cs |
'Legend 개발자 > Java' 카테고리의 다른 글
Read Code(Chap.08) (0) | 2017.07.20 |
---|---|
Read Code(Chap.07) (0) | 2017.07.20 |
Read Code(Chap.05) (0) | 2017.07.20 |
Read Code(Chap.04) (0) | 2017.07.20 |
Read Code(Chap.03) (0) | 2017.07.20 |