MCPcopy Create free account
hub / github.com/Extra-Creativity/Modern-Cpp-Basics / Object

Method Object

13-Multithreading/Answer-code/Thread.cpp:122–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120{
121public:
122 Object() { std::cout << "Construct at " << this << "\n"; };
123 ~Object() { std::cout << "Destruct at " << this << "\n"; };
124 Object(const Object &) { std::cout << "Const Copy at " << this << "\n"; };
125 Object(Object &&) { std::cout << "Move at " << this << "\n"; };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected