-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path09_oop_2.html
471 lines (401 loc) · 11.2 KB
/
09_oop_2.html
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
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="Constantine Korikov">
<title>Информатика</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
<style>
.bigtext {
font-size: 0.6em;
line-height: 1.2em;
}
.cite {
text-align: right;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<img src="pics/logo.svg" alt="logo"
style="height: 50px; margin: 0 auto 4rem auto; background: transparent;" class="demo-logo">
<h2>Информатика</h2>
<p>
<small><a href="https://www.linkedin.com/in/ckorikov/">Константин Кориков</a></small>
</p>
</section>
<section>
<h2>Тема 9</h2>
<p>Программирование на C++: наследование и полиморфизм</p>
</section>
<section>
<h2>Агенда</h2>
<ol>
<li>Наследование</li>
<li>Полиморфизм</li>
<li>Контейнеры и итераторы</li>
</ol>
</section>
<section>
<section>
<h2 class="r-fit-text">Наследование</h2>
</section>
<section>
<h2>Наследование в ООП</h2>
<p>Возможность переиспользования данных и функций одного класса в другом</p>
</section>
<section data-markdown>
<textarea data-template>
#### Два класса
```cpp
struct Student
{
std::string name{};
int score{};
};
struct Teacher
{
std::string name{};
};
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Классы с наследованием
```cpp
struct Person
{
std::string name{};
};
struct Student: Person
{
int score{};
};
struct Teacher: Person
{
};
```
<sub><sup>Классы сильно связываются при наследовании </sup></sub>
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Переопределение методов
```cpp
struct Person
{
std::string name{};
void pay()
{
std::cout << "paid" << std::endl;
}
};
struct Student: Person
{
int score{};
void pay()
{
std::cout << "paid scolarship" << std::endl;
}
};
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Модификаторы доступа
```cpp
struct Person
{
std::string name{};
};
struct Student: public Person
{
int score{};
};
struct Teacher: public Person
{
};
```
</textarea>
</section>
<section>
<h2>Модификаторы доступа</h2>
<img src="pics/09/inheritance.png">
</section>
<section data-markdown>
<textarea data-template>
#### Множественное наследование
```cpp
struct Person
{
std::string name{};
};
struct Student: Person
{
int score{};
};
struct Teacher: Person
{
};
struct TA: Teacher, Student
{
};
int main()
{
TA ta;
ta.score = 5.0;
// Проблема (the diamond problem)!
// error: request for member ‘name’ is ambiguous
ta.name = "Da Sha";
return 0;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Виртуальное наследование решает the diamond problem
```cpp
struct Person
{
std::string name{};
};
struct Student: virtual public Person
{
int score{};
};
struct Teacher: virtual public Person
{
};
struct TA: Teacher, Student
{
};
int main()
{
TA ta;
ta.score = 5.0;
ta.name = "Da Sha";
return 0;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### запретить наследование от класса
```cpp
struct Person final
{
std::string name{};
};
```
</textarea>
</section>
</section>
<section>
<section>
<h2 class="r-fit-text">Полиморфизм</h2>
</section>
<section>
<h2>Полиморфизм в ООП</h2>
<p>Возможность одинаково взаимодейстовать с объектами разных классов</p>
</section>
<section data-markdown>
<textarea data-template>
#### Полиморфизм
```cpp
struct Person
{
std::string name{};
virtual void pay()
{
std::cout << "paid" << std::endl;
}
virtual ~Person() {}
};
struct Student: Person
{
int score{};
void pay() override
{
std::cout << "paid scolarship" << std::endl;
}
};
struct Teacher: Person
{
void pay() override
{
std::cout << "paid salary" << std::endl;
}
};
struct TA: Teacher, Student
{
};
int main()
{
// Пример 1
Student student;
Teacher teacher;
student.pay();
teacher.pay();
// Пример 2
Person* ptr_student = &student;
Person* ptr_teacher = &teacher;
ptr_student->pay();
ptr_teacher->pay();
return 0;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Абстракный класс
```cpp
// Абстрактный класс
struct Person
{
// Чисто виртуальная функция
virtual void pay() = 0;
virtual ~Person() {}
};
struct Student: Person
{
void pay() final // или override
{}
};
int main()
{
Person p; // Создать нельзя
Student student;
Person* p = &student; // Можно использовать
return 0;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Абстрактный класс как интерфейс
```cpp
// Интерфейс часто называют, начиная с буквы I (от interface)
struct IFile
{
virtual void open(std::string path) = 0;
virtual Data read(int n) = 0;
virtual void write(Data data) = 0;
virtual void close() = 0;
virtual ~IFile() {}
};
```
</textarea>
</section>
<section data-background-iframe="https://en.cppreference.com/w/cpp/language/static_cast" data-background-interactive>
<div style="position: absolute; width: 30%; right: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 5px 25px rgba(0,0,0,0.2); background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px; font-size: 20px; text-align: left;">
<h2>static_cast</h2>
<p>статическое преобразование типов</p>
</div>
</section>
<section data-background-iframe="https://en.cppreference.com/w/cpp/language/dynamic_cast" data-background-interactive>
<div style="position: absolute; width: 30%; right: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 5px 25px rgba(0,0,0,0.2); background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px; font-size: 20px; text-align: left;">
<h2>dynamic_cast</h2>
<p>динамическое преобразование указателей и ссылок</p>
</div>
</section>
</section>
<section>
<section>
<h2 class="r-fit-text">Контейнеры и итераторы</h2>
</section>
<section>
<h2>Контейнеры</h2>
<p>
Библиотека контейнеров — часть стандартной библиотеки C++, которая содержит классы различных структур данных (контейнеров)
</p>
</section>
<section>
<h2>Итераторы</h2>
<p>
Интератор — обобщение указателя, которое позволяет единообразно работать со структурами данных (контейнерами)
</p>
</section>
<section data-markdown>
<textarea data-template>
#### Динамический массив (std::vector)
```cpp
#include<iostream>
#include<vector>
int main()
{
std::vector<int> container = {1, 2, 3, 4, 5};
for (auto it = container.begin(); it < container.end(); ++it)
{
std::cout << *it << std::endl;
}
return 0;
}
```
</textarea>
</section>
<section data-markdown>
<textarea data-template>
#### Основанное на диапазоне выражение for
```cpp
#include<iostream>
#include<vector>
int main()
{
std::vector<int> container = {1, 2, 3, 4, 5};
for (auto x: container)
{
std::cout << x << std::endl;
}
return 0;
}
```
</textarea>
</section>
<section data-background-iframe="https://en.cppreference.com/w/cpp/container/vector" data-background-interactive>
<div style="position: absolute; width: 30%; right: 0; box-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 5px 25px rgba(0,0,0,0.2); background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px; font-size: 20px; text-align: left;">
<h2>Vector</h2>
<p>в стандартной библиотеке C++</p>
</div>
</section>
</section>
<section>
<h5><a href="mailto:[email protected]">[email protected]</a></h5>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/zoom/zoom.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script src="plugin/search/search.js"></script>
<script src="plugin/mermaid/mermaid.js"></script>
<script src="plugin/math/math.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
slideNumber: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes, RevealSearch, RevealZoom, RevealMath.MathJax2]
});
</script>
</body>
</html>