I\'ve got this trivial class hierarchy:
class Base { public: virtual int x( ) const = 0; }; class Derived : public Base { int _x; public: Derive
I don't belive that the object's constructor is called when you use malloc.