64位机器码中的c ++类指针大小阻塞编译器

时间:2013-08-27 09:18:08

标签: c++

class node
{
public:
    int u;
    node* next;
    node() {};
    void setdata(int a) { u = a; };
    void setnext(node* nnext) { next = nnext; };
    int Data() { return u; };
    node* Next() { return next; };
};

我现在通过linux 64bit运行这个我发现类节点的大小是16bytes ... 4 for int u,8 for * next ....还剩下4个字节未知,我怎样才能识别或说出每个类元素

0 个答案:

没有答案