码迷,mamicode.com
首页 > 其他好文 > 详细

offsetof的意义

时间:2014-08-14 19:40:09      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   ar   art   

offsetof是求类的成员变量的偏移量,如果成员变量是类定义的第一个变量,那他的偏移量应该是0.但是引入继承之后,就要额外考虑了。下面的代码说明了这个问题:

bubuko.com,布布扣
#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;
}
View Code

nOffset = 4

nOffset2 = 0

offsetof的意义,布布扣,bubuko.com

offsetof的意义

标签:style   blog   http   color   os   io   ar   art   

原文地址:http://www.cnblogs.com/licb/p/3912883.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!