首页 > 代码库 > offsetof的意义
offsetof的意义
offsetof是求类的成员变量的偏移量,如果成员变量是类定义的第一个变量,那他的偏移量应该是0.但是引入继承之后,就要额外考虑了。下面的代码说明了这个问题:
#define AFX_NOVTABLE//#define AFX_NOVTABLE __declspec(novtable)class AFX_NOVTABLE CNoTrackObject{public: void* PASCAL operator new(size_t nSize); void PASCAL operator delete(void*); virtual ~CNoTrackObject() { }};void* PASCAL CNoTrackObject::operator new(size_t nSize){ void* p = ::LocalAlloc(LPTR, nSize);// if (p == NULL)// AfxThrowMemoryException(); return p;}void PASCAL CNoTrackObject::operator delete(void* p){ if (p != NULL) ::LocalFree(p);}struct CThreadData : public CNoTrackObject{ CThreadData* pNext; // required to be member of CSimpleList int nCount; // current size of pData LPVOID* pData; // actual thread local data (indexed by nSlot)};struct CThreadData2{ CThreadData2* pNext; int nCount; LPVOID* pData;};int main(int argc, char* argv[]){ int nOffset = offsetof(CThreadData, pNext); int nOffset2 = offsetof(CThreadData2, pNext); return 0;}
nOffset = 4
nOffset2 = 0
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。