码迷,mamicode.com
首页 > 编程语言 > 详细

[C++] sizeof(struct)

时间:2018-03-08 00:06:47      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:sign   关系   ati   成员   sizeof   unsigned   需要   gpo   系统   

关于对结构体求sizeof。需要考虑一下几点:

1、内存对齐

2、机器的位数(32 or 64)

3、是否含有虚函数

4、继承关系

5、static不归入sizeof

6、普通成员函数与sizeof无关

 

以32位系统为例

Exp 1

空类:占用1个字节。

class Base {};
class Base 
{
public:
    Base();
    ~Base();
};
sizeof(Base) = 1

Exp 2

虚函数:占用4个字节

class Base
{
public:
    Base();
    virtual ~Base();
private:
    int a;
    char *p;
};
sizeof(Base) = 4 + 4 + 4 = 12

Exp 3

继承关系 n + sizeof(Base)

static不归入sizeof统计

class Derive : public Base
{
public:
    Derive();
    ~Derive();
private:
    static int st;
    int d;
    char *p
};
sizeof(Derive) = sizeof(Base) + 4 + 4 = 20

 

the size of var in 32 or 64 bit system.

32:
char : 1
char* : 4
short int : 2
int : 4
unsigned int : 4
float : 4
double : 8
long : 4
long long : 8
unsigned long : 4
64:
char : 1
char* : 8
short int : 4
int : 4
unsigned int : 4
float : 4
double : 8
long : 8
long long : 8
unsigned long : 8

 

[C++] sizeof(struct)

标签:sign   关系   ati   成员   sizeof   unsigned   需要   gpo   系统   

原文地址:https://www.cnblogs.com/immjc/p/8525632.html

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