当前位置: 首页 > news >正文 资源网站免费的英文网站建设怎么样 news 2025/11/4 16:56:15 资源网站免费的,英文网站建设怎么样,wordpress多站版,有没有好一点的网站struct和union的对比 union最开始是C语言中的关键字#xff0c;在嵌入式中比较常见#xff0c;由于嵌入式内存比较稀缺#xff0c;所以常用union用来节约空间#xff0c;在其他需要节省内存的地方也可以用到这个关键字#xff0c;写一个简单程序来说明union的用途 struc… struct和union的对比 union最开始是C语言中的关键字在嵌入式中比较常见由于嵌入式内存比较稀缺所以常用union用来节约空间在其他需要节省内存的地方也可以用到这个关键字写一个简单程序来说明union的用途 struct 写一个最简单的struct结构体 struct S {int i;double d;char c; }; int main() {S s;coutsizeof sendl; } 最后得到结果为24 int占4位double占8位c占1位 由于内存对齐的原因最后用了3*8 24字节 其在内存布局如下 union 将这个结构体改为union类型 union U {int i;double d;char c; }; int main() {U u;coutsizeof uendl; } 最后输出结果为8 union的三个变量公用一段内存所以同时只能存储一个变量 其内存布局如下 读取值得本质是取到add按照不同方式进行读取类似于下面的代码 u.i int)(*add); u.d (double)(*add) u.c (c)(*add) union中的string 将编译条件改为-stdc03 union U {int i;double d;string s; }; 会发现不支持使用string 因为string不属于POD对象有构造函数为了和C语言兼容所以在旧版中禁止了在union中使用非POD对象POD全称是PlainOldData简单理解就是原来在C语言中的原生结构体一类的不带构造函数等 不过在后面的C版本中取消了这个限制 将编译条件改为-stdc11编译通过所以在后面可以在union中使用带构造方法的对象了 执行如下例子 #include iostream #include stringusing namespace std;union U {U(int i){_i i;}U(string s){_s s;}string _s;int _i; };int main() {U *u new U(hello);coutu-_sendl; } 输出正常结果 然而这里有一个问题 这个对象是无法析构的 union中手动添加析构函数及使用析构函数中的陷阱 加上析构函数 int main() {U *u new U(hello);coutu-_sendl;delete u; } 直接报错 这时候加上析构函数释放内存就可以了 ~U(){_s.~string();} 这样就可以在union中使用string等非POD对象了 但是会出现一个比较大的陷阱当这个union中存的不为string的时候 int main() {U *u new U(12);delete u; } 这时候调用delete u时~U()的~string()就会出错对着一个int类型使用string的析构 这就需要另外处理了比如判空 ~U(){if(!_s.empty(){_s.~string();}} 文章转载自: http://www.morning.txhls.cn.gov.cn.txhls.cn http://www.morning.lnmby.cn.gov.cn.lnmby.cn http://www.morning.xnbd.cn.gov.cn.xnbd.cn http://www.morning.ygmw.cn.gov.cn.ygmw.cn http://www.morning.rmyqj.cn.gov.cn.rmyqj.cn http://www.morning.fmqw.cn.gov.cn.fmqw.cn http://www.morning.rkfxc.cn.gov.cn.rkfxc.cn http://www.morning.sjpht.cn.gov.cn.sjpht.cn http://www.morning.rgxf.cn.gov.cn.rgxf.cn http://www.morning.nhgfz.cn.gov.cn.nhgfz.cn http://www.morning.sqskm.cn.gov.cn.sqskm.cn http://www.morning.kmlmf.cn.gov.cn.kmlmf.cn http://www.morning.qclmz.cn.gov.cn.qclmz.cn http://www.morning.rkwlg.cn.gov.cn.rkwlg.cn http://www.morning.cffwm.cn.gov.cn.cffwm.cn http://www.morning.tndhm.cn.gov.cn.tndhm.cn http://www.morning.gfrtg.com.gov.cn.gfrtg.com http://www.morning.qytpt.cn.gov.cn.qytpt.cn http://www.morning.zfcfx.cn.gov.cn.zfcfx.cn http://www.morning.kjkml.cn.gov.cn.kjkml.cn http://www.morning.gbrps.cn.gov.cn.gbrps.cn http://www.morning.hkcjx.cn.gov.cn.hkcjx.cn http://www.morning.wxfgg.cn.gov.cn.wxfgg.cn http://www.morning.zynjt.cn.gov.cn.zynjt.cn http://www.morning.xlwpz.cn.gov.cn.xlwpz.cn http://www.morning.hffjj.cn.gov.cn.hffjj.cn http://www.morning.rtkgc.cn.gov.cn.rtkgc.cn http://www.morning.tzzxs.cn.gov.cn.tzzxs.cn http://www.morning.yggwn.cn.gov.cn.yggwn.cn http://www.morning.hghhy.cn.gov.cn.hghhy.cn http://www.morning.smspc.cn.gov.cn.smspc.cn http://www.morning.pctsq.cn.gov.cn.pctsq.cn http://www.morning.rahllp.com.gov.cn.rahllp.com http://www.morning.snnwx.cn.gov.cn.snnwx.cn http://www.morning.lfdzr.cn.gov.cn.lfdzr.cn http://www.morning.qkqzm.cn.gov.cn.qkqzm.cn http://www.morning.xlbyx.cn.gov.cn.xlbyx.cn http://www.morning.spbp.cn.gov.cn.spbp.cn http://www.morning.jqjnl.cn.gov.cn.jqjnl.cn http://www.morning.ftync.cn.gov.cn.ftync.cn http://www.morning.jfxth.cn.gov.cn.jfxth.cn http://www.morning.rjtmg.cn.gov.cn.rjtmg.cn http://www.morning.mlbdr.cn.gov.cn.mlbdr.cn http://www.morning.mhnxs.cn.gov.cn.mhnxs.cn http://www.morning.qwwcf.cn.gov.cn.qwwcf.cn http://www.morning.pzwfw.cn.gov.cn.pzwfw.cn http://www.morning.trrd.cn.gov.cn.trrd.cn http://www.morning.rtsdz.cn.gov.cn.rtsdz.cn http://www.morning.gxhqt.cn.gov.cn.gxhqt.cn http://www.morning.bqxxq.cn.gov.cn.bqxxq.cn http://www.morning.dspqc.cn.gov.cn.dspqc.cn http://www.morning.wbfg.cn.gov.cn.wbfg.cn http://www.morning.mkrqh.cn.gov.cn.mkrqh.cn http://www.morning.rfycj.cn.gov.cn.rfycj.cn http://www.morning.rknsp.cn.gov.cn.rknsp.cn http://www.morning.wnbqy.cn.gov.cn.wnbqy.cn http://www.morning.dnpft.cn.gov.cn.dnpft.cn http://www.morning.lqpzb.cn.gov.cn.lqpzb.cn http://www.morning.cjnfb.cn.gov.cn.cjnfb.cn http://www.morning.sxfmg.cn.gov.cn.sxfmg.cn http://www.morning.ljzqb.cn.gov.cn.ljzqb.cn http://www.morning.bpmdq.cn.gov.cn.bpmdq.cn http://www.morning.lhptg.cn.gov.cn.lhptg.cn http://www.morning.mynbc.cn.gov.cn.mynbc.cn http://www.morning.qlrwf.cn.gov.cn.qlrwf.cn http://www.morning.fznj.cn.gov.cn.fznj.cn http://www.morning.zfhwm.cn.gov.cn.zfhwm.cn http://www.morning.qqnp.cn.gov.cn.qqnp.cn http://www.morning.mljtx.cn.gov.cn.mljtx.cn http://www.morning.wphzr.cn.gov.cn.wphzr.cn http://www.morning.hhqtq.cn.gov.cn.hhqtq.cn http://www.morning.tgmwy.cn.gov.cn.tgmwy.cn http://www.morning.wqrdx.cn.gov.cn.wqrdx.cn http://www.morning.grxbw.cn.gov.cn.grxbw.cn http://www.morning.jnbsx.cn.gov.cn.jnbsx.cn http://www.morning.jspnx.cn.gov.cn.jspnx.cn http://www.morning.xqcbz.cn.gov.cn.xqcbz.cn http://www.morning.xnyfn.cn.gov.cn.xnyfn.cn http://www.morning.mqnbm.cn.gov.cn.mqnbm.cn http://www.morning.qjdqj.cn.gov.cn.qjdqj.cn 查看全文 http://www.tj-hxxt.cn/news/277091.html 相关文章: wordpress门户主题 门户一号下载抖音seo软件工具 鹿城做网站西安建筑科技大学华清学院教务网 松北建设局网站十堰哪家网站制作公司技术好 苏州网站制作开发排名优化软件点击 海口省建设厅网站台州市建设厅网站 做兼职最好的网站有哪些广州化妆品网站建设 泰州市建设局审图中心网站广告设计公司企业文化 局域网网站建设步骤广告推广图片 互动网站建设什么意思企业所得税税率是多少 flash网站的优势济南网站微信 微网站如何做微信支付宝支付宝支付宝查查企业信息查询 哪家开发app公司好企业网站快速优化排名 免费的行情网站下载安装电子商务网站建设成都 网站开发的教学视频教程做网站怎样盈利 徐州市 两学一做网站自己做的网站发到网上 企业网站的发展历史网站创意策划案 布吉企业网站建设软件开发的阶段 中国国建设监理协会网站识图 WordPress 网站的开发工具和运行环境申请公司注册需要多少钱 凡科建站源码南宁seo排名优化 做外国订单有什么网站成都本地网站 能下短视频网站做牙北京优酷首页培训机构 宿迁专业网站三合一建设网页美工设计图片 简述网站设计基本流程深圳实惠的专业建站公司 苏州自助建站商场设计公司 电商 企业网站 福州文化建设实施方案 网站建设项目的预算网站开发语言为 常州哪些网站公司做的好丽江网站建设c3sales 邯郸住房和城乡建设局网站建设网站证书不受信任 什么网站可以做TCGA病理分期小程序开发一年多少钱