-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuest.info
More file actions
102 lines (89 loc) · 3.66 KB
/
Copy pathQuest.info
File metadata and controls
102 lines (89 loc) · 3.66 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>JavaRush</title>
<style>
mark {
padding: .1em .3em;
color: #fff;
text-shadow: 1px 1px 0 rgba(0, 0, 0, .2);
font-size: 1em;
font-family: Menlo, Monaco, Consolas, Courier New, Ubuntu Mono, monospace;
border-radius: 3px;
}
.light-content {
font-size: 15px;
line-height: 1.62;
overflow-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
color: #151f33;
}
.dark-content {
font-size: 15px;
line-height: 1.62;
overflow-wrap: break-word;
font-family: Arial, Helvetica, sans-serif;
color: #fff;
background: #1F2023;
}
.light-content .text-corporate {
color: #f80 !important;
}
.dark-content .text-corporate {
color: #ff7337 !important;
}
.light-content mark.green {
background-color: #41a444;
}
.dark-content mark.green {
background-color: #45aa4c;
}
.light-content mark.orange {
background-color: #faa033;
}
.dark-content mark.orange {
background-color: #ff7337;
}
.light-content mark.blue {
background-color: #3a5fa5;
}
.dark-content mark.blue {
background-color: #4798cf;
}
.light-content .text-red {
color: red !important;
}
.dark-content .text-red {
color: #f14f4c !important;
}
</style>
</head>
<body class="dark-content">
<div style="padding: 10px 30px">
<h3>Многопоточность в Java</h3>
<p><strong>Квест «Java Multithreading»</strong> познакомит студентов секретного центра <strong>Java<span
class="text-corporate">Rush</span></strong> с многопоточностью. В течение <strong>10 уровней</strong> вы
будете изучать устройство объекта Object, String, внутренние классы. Узнаете, как создавать и останавливать
потоки, что такое
<mark class="orange">DeadLock</mark>
,
<mark class="orange">Wait</mark>
,
<mark class="orange">notify</mark>
,
<mark class="orange">notifyAll</mark>
, получите опыт работы с
<mark class="blue">Jsoup</mark>
и
<mark class="blue">Swing</mark>
, а также узнаете об автоупаковке и особенностях её реализации. На этом квесте вы создадите ваши первые
мини-проекты — <strong>большие задачи</strong>. В обучающих целях их решение будет разбито на этапы. Вам нужно
будет написать несколько игр — <strong>тетрис</strong>, <strong>змейку</strong>, <strong>космическую</strong>
<strong>стрелялку</strong>, <strong>арканоид</strong>. Также вы поработаете над серьезными <span
class="text-corporate">многоступенчатыми задачами</span>, наподобие <strong>чата</strong>, эмулятора
<strong>банкомата</strong> и даже <strong>парсера</strong> <strong>сайтов</strong>!
</p>
</div>
</body>
</html>