-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.cpp
29 lines (26 loc) · 913 Bytes
/
main.cpp
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
#include <iostream>
#include <ostream>
using namespace std;
class SomeClass {
public:
SomeClass(void) : SomeClass(10) {
// Эти инструкции выполнятся после исполнения инструкций в конструкторе
// SomeClass(int):
wcout << "Running SomeClass::SomeClass(void)." << endl;
}
SomeClass(int value) : m_value(value) {
// Эти инструкции выполнятся после инициализации m_value сверху:
wcout << "Running SomeClass::SomeClass(int)." << endl;
}
int GetValue(void) { return m_value; }
private:
int m_value;
};
int main(int argc, char* argv[]) {
SomeClass someC;
// Running SomeClass::SomeClass(int).
// Running SomeClass::SomeClass(void).
wcout << L"SomeClass::GetValue() = " << someC.GetValue() << endl;
// SomeClass::GetValue() = 10
return 0;
}