-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdynamic.cpp
More file actions
41 lines (33 loc) · 697 Bytes
/
dynamic.cpp
File metadata and controls
41 lines (33 loc) · 697 Bytes
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
#include "common.h"
#include <iostream>
class DynamicInterface {
public:
virtual void tick(uint64_t n) = 0;
virtual uint64_t getvalue() = 0;
};
class DynamicImplementation : public DynamicInterface {
uint64_t counter;
public:
DynamicImplementation()
: counter(0) {
}
virtual void tick(uint64_t n) {
counter += n;
}
virtual uint64_t getvalue() {
return counter;
}
};
void run_dynamic(DynamicInterface* obj) {
for (unsigned i = 0; i < N; ++i) {
for (unsigned j = 0; j < i; ++j) {
obj->tick(j);
}
}
}
int main() {
auto obj = new DynamicImplementation();
run_dynamic(obj);
std::cout << "counter=" << obj->getvalue() << "\n";
return 0;
}