-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.cc
57 lines (45 loc) · 994 Bytes
/
main.cc
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
#include <memory>
#include <iostream>
#include <cstdlib>
struct A {
virtual ~A() = default;
virtual void whoami() const = 0;
};
class B : public A {
public:
B() = default;
~B() override {
std::cout << "~B()" << std::endl;
}
void whoami() const override {
std::cout << "B" << std::endl;
}
private:
};
void test1() {
std::weak_ptr<A> w;
assert(w.expired()); // TRUE
assert(!w.lock()); // TRUE
{
std::shared_ptr<A> s = std::make_shared<B>();
w = s;
assert(!w.expired()); // TRUE
assert(w.lock()); // TRUE
}
assert(w.expired()); // TRUE
assert(!w.lock()); // TRUE
}
void test2() {
std::weak_ptr<A> w;
assert(w.expired()); // TRUE
auto s = w.lock();
assert(!s); // TRUE
s = std::make_shared<B>();
assert(s); // TRUE
assert(w.expired()); // TRUE
}
int main(int argc, char const * argv[]) {
// test1();
test2();
return EXIT_SUCCESS;
}