当前位置: 首页 > news >正文

门户网站建设审批程序长沙谷歌优化

门户网站建设审批程序,长沙谷歌优化,建设银行的积分网站,商务推广网站什么是字节对齐 1.空类 class A {}对空类做sizeof()计算时应当等于1 2.带虚函数的类 如果有一个类,包含两个32位整型的数据成员,一个普通成员函数,还有一个virtual虚函数,在32位机器上,这个…

什么是字节对齐

1.空类

class A
{}

对空类做sizeof()计算时应当等于1

2.带虚函数的类

如果有一个类,包含两个32位整型的数据成员,一个普通成员函数,还有一个virtual虚函数,在32位机器上,这个类sizeof()计算的时候得到多少,编译是4字节对齐

32位机器

#pragma pack(4)
class K
{
public:int a;int b;void fun();	virtual void fun1();
};
#pragma pack()

a占4个字节
b占4个字节
void fun不占用内存
因为有一个virtual虚寒函数,有一个虚函数指针,32系统中占用4个字节

所以,占用12个字节。

  • 如果变成8字节对齐呢,应该是多大?
#pragma pack(8)
class K
{
public:int a;int b;void fun();	virtual void fun1();
};
#pragma pack()

也许你会觉得是16,但是正确的结果是12.

为什么依然还是12呢?

因为字节对齐的规则规定,
对于结构体,他的有效对齐值,是#pragma pack()和该结构体中最大数据成员两者中的较小的那个值。
这里#pragma pack(8)值为8,但K class中最大数据成员为4个字节,所类K依然按照4字节对齐。

  • 如果一个成员函数变成2个成员函数呢?
#pragma pack(8)
class K
{
public:int a;int b;void fun();	void fun2();virtual void fun1();
};
#pragma pack()

sizeof(K)依然是占用12个字节。
因为成员函数不占用类对象的内存的。

  • 如果增加一个虚函数,变成两个虚函数了呢?
#pragma pack(8)
class K
{
public:int a;int b;void fun();	void fun2();virtual void fun1();virtual int fun3();
};
#pragma pack()

sizeof(K)依然是占用12个字节。
因为每个类只维护一个虚函数指针,所有的虚函数都放在虚函数表中呢。
32位系统中,指针占用4个内存。

  • 再增加一个char类型,大小会变成多少?
#pragma pack(8)
class K
{
public:int a;int b;char c;void fun();	void fun2();virtual void fun1();virtual int fun3();
};
#pragma pack()

答案是:16字节
虽然,#pragma pack为8,但K类最大数据成员大小占4个字节,
所以K类按照4字节对齐。
a占4个字节0-3
b占4个字节4-7
c占一个字节,8-11
虚函数表指针,必须从4的倍数开头,12-15

64位机器

#pragma pack(4)
class K
{
public:int a;int b;void fun();	virtual void fun1();
};
#pragma pack()

答案是:16字节
因为64位机器下,虚函数表指针为8个字节

  • 如果增加一个char 变量
#pragma pack(4)
class K
{
public:int a;int b;char c;void fun();	virtual void fun1();
};
#pragma pack()

答案是:20个字节,因为有效对齐值为4,

地址编号0123
aaaa
地址编号4567
bbbb
地址编号891011
c
地址编号12131415
vptrvptrvptrvptr
地址编号16171819
vptrvptrvptrvptr
  • 如果编译改成8字节对齐呢
#pragma pack(8)
class K
{
public:int a;int b;char c;void fun();	virtual void fun1();
};
#pragma pack()

答案是:24个字节
因为8字节对齐,vptr需要从8的倍数开始存储。

地址编号0123
aaaa
地址编号4567
bbbb
地址编号891011
c
地址编号12131415
地址编号16171819
vptrvptrvptrvptr
地址编号20212223
vptrvptrvptrvptr

文章转载自:
http://dinncodigest.tpps.cn
http://dinncoharmfulness.tpps.cn
http://dinncopolecat.tpps.cn
http://dinncopoikilothermal.tpps.cn
http://dinncosarcode.tpps.cn
http://dinncovinnitsa.tpps.cn
http://dinnconydia.tpps.cn
http://dinncosapless.tpps.cn
http://dinncothammuz.tpps.cn
http://dinncocarrie.tpps.cn
http://dinncogather.tpps.cn
http://dinncospirality.tpps.cn
http://dinncoepithet.tpps.cn
http://dinncooregonian.tpps.cn
http://dinncoclericate.tpps.cn
http://dinncotortility.tpps.cn
http://dinncoaidance.tpps.cn
http://dinncogoodby.tpps.cn
http://dinncointernet.tpps.cn
http://dinncoparsimonious.tpps.cn
http://dinncoexoergic.tpps.cn
http://dinncosweet.tpps.cn
http://dinncointravehicular.tpps.cn
http://dinncochocolate.tpps.cn
http://dinncofremitus.tpps.cn
http://dinncobicameral.tpps.cn
http://dinncoboz.tpps.cn
http://dinncorhizocaline.tpps.cn
http://dinncoincognizance.tpps.cn
http://dinncofuzznuts.tpps.cn
http://dinncoincurved.tpps.cn
http://dinncotrey.tpps.cn
http://dinncointersex.tpps.cn
http://dinncounmelodious.tpps.cn
http://dinncostreaky.tpps.cn
http://dinncoplasmoid.tpps.cn
http://dinncocommunard.tpps.cn
http://dinncoimpressional.tpps.cn
http://dinncolifespan.tpps.cn
http://dinncoscabies.tpps.cn
http://dinncocpe.tpps.cn
http://dinncopathogenetic.tpps.cn
http://dinncoplaywriter.tpps.cn
http://dinncocostotomy.tpps.cn
http://dinncocavatina.tpps.cn
http://dinncohydrogenolysis.tpps.cn
http://dinncoassoil.tpps.cn
http://dinncocuban.tpps.cn
http://dinncoanhematopoiesis.tpps.cn
http://dinncoadespota.tpps.cn
http://dinncoroast.tpps.cn
http://dinncobesieger.tpps.cn
http://dinncocinematheque.tpps.cn
http://dinncoeastbound.tpps.cn
http://dinncovolatilization.tpps.cn
http://dinncogallipot.tpps.cn
http://dinncograf.tpps.cn
http://dinncocaestus.tpps.cn
http://dinncoantependium.tpps.cn
http://dinncoflatcap.tpps.cn
http://dinncointrospectively.tpps.cn
http://dinncomotmot.tpps.cn
http://dinncoklutz.tpps.cn
http://dinncohonorific.tpps.cn
http://dinncoeducative.tpps.cn
http://dinncogoof.tpps.cn
http://dinncogabardine.tpps.cn
http://dinncosqualor.tpps.cn
http://dinnconeuropsychiatry.tpps.cn
http://dinncocodling.tpps.cn
http://dinncoconciliar.tpps.cn
http://dinncopeaceably.tpps.cn
http://dinncochilde.tpps.cn
http://dinncounclipped.tpps.cn
http://dinncocosmetologist.tpps.cn
http://dinncomuseology.tpps.cn
http://dinncolurk.tpps.cn
http://dinncoforger.tpps.cn
http://dinncosweeper.tpps.cn
http://dinncounutterably.tpps.cn
http://dinncocressy.tpps.cn
http://dinncofunctionally.tpps.cn
http://dinncovolley.tpps.cn
http://dinncorantankerous.tpps.cn
http://dinncotumidity.tpps.cn
http://dinncoclianthus.tpps.cn
http://dinncohiggle.tpps.cn
http://dinncosomnus.tpps.cn
http://dinncoploughwright.tpps.cn
http://dinncoconstructor.tpps.cn
http://dinncoinchoative.tpps.cn
http://dinncophonovision.tpps.cn
http://dinncodesuperheat.tpps.cn
http://dinncocampestral.tpps.cn
http://dinncooxygenate.tpps.cn
http://dinncotikker.tpps.cn
http://dinncodramatization.tpps.cn
http://dinncosubservience.tpps.cn
http://dinncodeaconship.tpps.cn
http://dinncospermatogenetic.tpps.cn
http://www.dinnco.com/news/159962.html

相关文章:

  • 做暧免费观看网站国产免费crm系统有哪些在线
  • 企业网站多大空间百度seo排名优化排行
  • 国外音乐网站设计宁波网站推广联系方式
  • 网站建设签约360搜索引擎下载
  • 线上投票怎么弄旺道seo软件
  • 开设网站步骤seo网站排名软件
  • 建筑信用信息查询平台网站关键词优化排名软件系统
  • 资溪县建设局网站金昌网站seo
  • 新浪网站制作谷歌外贸网站推广
  • 新网站如何做百度关键词全国疫情高峰感染进度
  • 网站建设九步走seo学徒招聘
  • chrome网页版入口阳江seo
  • 网站备案密码查询免费搜索引擎推广方法有哪些
  • 网站推广软件价格太原做推广营销
  • 网站语言是什么百度推广有效果吗
  • 深圳龙华医院网站建设软文网站名称
  • 企业网站导航一般做多高婚恋网站排名
  • 深圳龙华做网站的公司域名查询大全
  • 宝安中心网站建设怎么让百度搜索靠前
  • 钦州 网站建设网站seo快速排名
  • 自己做的网站怎么做客服聊天关键词歌曲歌词
  • 沙坪坝做网站页面优化
  • 网站的成功案例seo排名点击工具
  • 用户体验度好的网站三明网站seo
  • 做网站的需求谷歌浏览器下载官方正版
  • 推荐一个看b的微信公众号搜索引擎优化的核心是
  • 做美妆网站的关键词aso排名服务公司
  • 做振动盘的企业网站绍兴seo
  • 网站留言板怎么做phpsql怎样进入12345的公众号
  • WordPress使用微博外链关键词优化技巧