-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathMostDerived.h
34 lines (25 loc) · 1.17 KB
/
MostDerived.h
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
#ifndef MostDerived_h
#define MostDerived_h
#include "Derived.h"
class MostDerived : public Derived {
public:
~MostDerived() override = default;
// Это
// void SaySomething();
// то же самое, что и
// void SaySomething() override;
// только будет
// warning: 'SaySomething' overrides a member function but is not marked 'override' [-Winconsistent-missing-override]
// override выполняет проверку на то что ранее был уже такой же виртуальный
// метод. В данном случае не находится метода с такой сигнатурой и проверка
// не проходит:
//
// void SaySomething(char const *message) override;
// error: non-virtual member function marked 'override' hides virtual member function
//
// void SaySomething(char const *message = nullptr) override;
// error: non-virtual member function marked 'override' hides virtual member function
// Это уже новая виртуальная фукнция:
virtual void SaySomething(char const *message);
};
#endif /* MostDerived_h */