How are objects stored in memory in C++?
For a regular class such as
class Object { public: int i1; int i2; char i3; int i4; pri
Usually what matters isn't whether the class has a constructor: what matters is whether the class has any virtual methods. For details, google for 'vtable' and 'vptr'.