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

sizeof 4字节对齐

时间:2016-10-21 13:38:48      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:pre   div   type   str   int   blog   class   sig   sign   

#include <iostream>

#include<assert.h>
using namespace std;



typedef struct sys{
char a;
int * b;
char c;
}sysa;

class c{
public:
    unsigned a;
    virtual void bi(c* s);
    char dd;
    static int sd;


};
int main()
{
char str2[100];

cout<<sizeof(str2)<<endl;


char str[]="jdfl中国";
char *p=str;
cout<<sizeof(p)<<endl;
cout<<sizeof(str)<<endl;
cout<<sizeof(sysa)<<endl;
cout<<sizeof(c)<<endl;
cout<<sizeof(unsigned)<<endl;
}

  64位机

100 4 9 12 12 4 

sizeof 4字节对齐

标签:pre   div   type   str   int   blog   class   sig   sign   

原文地址:http://www.cnblogs.com/8335IT/p/5984029.html

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