المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Multiple Inheritance question



C++ Programming
03-31-2009, 08:54 PM
Hi,

I have derived class which has 2 base calsses CSyncObject and CSingleLock

Since the input to the CSingeLock is a pointer to a CSyncObject my question is

if I first create the CSyncObject can I reference that object object when executing

the Constructer for the CSingleLock with the "this" pointer

e.g. class mylock() : public CSyncObject(NULL) , public CSingeLock(this->

my question really is am I going down the right path

I would assume the "this" pointer gets initialized after excuting the first

contructer