// file main_mp4_OO_b.cpp #include #include //======================================= struct FooVal { FooVal(int initialValue=0); ~FooVal(); private: int _someValue; }; //======================================= class FooBase { FooVal _value; public: FooBase(); FooBase(int initialValue); virtual ~FooBase(); }; //======================================= class FooDerived : public FooBase { int _ival; public: FooDerived(int initialValue); ~FooDerived(); }; //======================================= class Bar { FooBase *_helperObject; public: Bar(); ~Bar(); }; //======================================= class Base { int a; public: Base(int a) { this.a = a; } }; class Derived : public Base{ int b; public: Derived(int a, int b) { Base::Base(a); this.b = b; } }; //======================================= FooVal::FooVal(int initialValue) : _someValue(initialValue) { std::cout << "FooVal::FooVal()" << std::endl; } FooVal::~FooVal(){ std::cout << "FooVal::~FooVal()" << std::endl; } FooBase::FooBase(){ std::cout << "FooBase::FooBase()" << std::endl; } FooBase::FooBase(int initialValue) : _value(initialValue) { std::cout << "FooBase::FooBase(int)" << std::endl; } FooBase::~FooBase(){ std::cout << "FooBase::~FooBase(" << std::endl; } FooDerived::FooDerived(int initialValue) : FooBase(initialValue), _ival(0) { std::cout << "FooDerived::FooDerived()" << std::endl; } FooDerived::~FooDerived(){ std::cout << "FooDerived::~FooDerived()" << std::endl; } Bar::Bar(){ _helperObject = new FooDerived(0); } Bar::~Bar(){ delete _helperObject; } struct StackObject { private: void* operator new(size_t size) noexcept { bool noStackObjectOnHeap = false; assert(noStackObjectOnHeap); return nullptr; } }; struct A : public StackObject { A(){std::cout << "+A ";} //A(const A&){std::cout << "+A";} ~A(){std::cout << "-A ";} }; struct B : public StackObject { B(){std::cout << "+B ";} //B(const B&){std::cout << "+B";} ~B(){std::cout << "-B ";} }; struct C : public StackObject { C(){std::cout << "+C ";} //C(const C&){std::cout << "+C";} ~C(){std::cout << "-C ";} }; class HeapObject{ public: void* operator new (size_t size); HeapObject(); virtual ~HeapObject(); static bool assertionsHold(); protected: private: static int ctorCount; static int dtorCount; static int newCount; // static void remove(HeapObject *); HeapObject(const HeapObject&) = delete; HeapObject& operator=(const HeapObject&) = delete; }; int HeapObject::ctorCount = 0; int HeapObject::dtorCount = 0; int HeapObject::newCount = 0; void* HeapObject::operator new (size_t size){ newCount++; return new char[size]; } HeapObject::HeapObject(){ ctorCount++; } HeapObject::~HeapObject(){ dtorCount++; } bool HeapObject::assertionsHold(){ assert(ctorCount == newCount); // all objects have been allocated on heap assert(ctorCount == dtorCount); // all objects have been deleted return true; } class K : public HeapObject { public: K(){std::cout << "+K ";} ~K(){std::cout << "-K ";} }; class L { public: L(){std::cout << "+L ";} ~L(){std::cout << "-L ";} }; class M { public: M(){std::cout << "+M ";} ~M(){std::cout << "-M ";} }; int main(int argc, const char * argv[]) { Bar * bar = new Bar(); // ... delete bar; // implies "delete _helperObject"; FooBase *obj = new FooDerived(7); delete obj; { C c; K* k = new K(); delete k; } HeapObject::assertionsHold(); std::cout << " ENDE" << std::endl; return 0; }