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

武汉便宜做网站海会网络做的网站怎么做优化

武汉便宜做网站,海会网络做的网站怎么做优化,怎么换自己的网站服务器,wordpress 登录hanshu可能有些朋友看见这个标题第一反应是嵌入式的某些内存中,0地址也是可以被正常访问的,所以对0地址的解引用不会发生错误,但我要说的情况不是这个,而是指一个真正的空指针,不仅是c/c中的0,(void*)0,NULL,还有nullptr,一个真正的空指针. 在c语言中,想获得某结构体的成员变量相对偏…

可能有些朋友看见这个标题第一反应是嵌入式的某些内存中,0地址也是可以被正常访问的,所以对0地址的解引用不会发生错误,但我要说的情况不是这个,而是指一个真正的空指针,不仅是c/c++中的0,(void*)0,NULL,还有nullptr,一个真正的空指针.

在c语言中,想获得某结构体的成员变量相对偏移,可以使用offsetof宏,其实现可能是:

#define offsetof(s,m)   (size_t)&(((s*)0)->m)

可以发现:

  1. 先将0转换为指向s的指针
  2. 使用->解引用,获取到m变量
  3. 使用&取地址,获得一个指向m的指针
  4. 将指针转换为size_t,即为m的偏移

从这个例子可以发现,对于0地址,发生了一次"解引用",然而并没有"segmentation fault",为什么呢?其实呢,这个解引用被优化了,编译器看到这句时,并没有发生实际的解引用而获得到了m的地址,是一个真正的编译器开洞才能实现的功能.(如有错误,诚请斧正)

你可以这样定义自己的offsetof

#undef offsetof
#define offsetof(s,m)	(size_t)&(((s*)NULL)->m)
// 或
#undef offsetof
#define offsetof(s,m)	(size_t)&(((s*)nullptr)->m)

你会发现,也是可以正常工作的,至少gcc的c++14之前是可以的,gcc的c++14后,
对于non-POD类型,这个宏将可能可能导致未定义的问题.注意,在cppreference中说的是从c++11开始,对于non-POD类型使用offsetof宏将导致未定义行为.
no-invalid-offsetof

gcc中的offsetof是这样定义的:Support for offsetof

#define offsetof(type, member) __builtin_offsetof (type, member)

可以发现,果然是内置的编译器开洞实现的功能.

综上,解引用一个空指针,不一定会导致段错误.
在c++中,想获得类或结构体成员的偏移量,不要使用offsetof,而应该使用&ClassName::MembersName,例如&test::str,就获取到了str的偏移

#include <vector>
#include <iostream>
class test{
public:float float_number = 3.14;int int_number = 456;std::string str = "789";
};template<typename T>
void print_member(const test* class_ptr,T test::* member_offset){printf("offset of member is %p,content is ",member_offset);std::cout << class_ptr->*member_offset << std::endl;
}int main(){test t;print_member(&t,&test::int_number);print_member(&t,&test::str);
}
/*
output:
offset of member is 0x4,content is 456
offset of member is 0x8,content is 789
*/

文章转载自:
http://antepaschal.c7617.cn
http://rupee.c7617.cn
http://contrapositive.c7617.cn
http://microcurie.c7617.cn
http://jacquerie.c7617.cn
http://cycloid.c7617.cn
http://reloan.c7617.cn
http://cesarian.c7617.cn
http://reciprocally.c7617.cn
http://superempirical.c7617.cn
http://turnabout.c7617.cn
http://breechclout.c7617.cn
http://retrospect.c7617.cn
http://cit.c7617.cn
http://longan.c7617.cn
http://agonic.c7617.cn
http://unrhymed.c7617.cn
http://mediaeval.c7617.cn
http://sporicidal.c7617.cn
http://mamey.c7617.cn
http://postform.c7617.cn
http://inculpable.c7617.cn
http://amphitheatral.c7617.cn
http://draff.c7617.cn
http://briareus.c7617.cn
http://fluvioglacial.c7617.cn
http://towy.c7617.cn
http://soursop.c7617.cn
http://frey.c7617.cn
http://hobbledehoy.c7617.cn
http://thrasonical.c7617.cn
http://hymeneal.c7617.cn
http://succous.c7617.cn
http://pathein.c7617.cn
http://unsheltered.c7617.cn
http://impersonalize.c7617.cn
http://dav.c7617.cn
http://acetose.c7617.cn
http://sauroid.c7617.cn
http://haft.c7617.cn
http://discovert.c7617.cn
http://firenet.c7617.cn
http://miniaturist.c7617.cn
http://granulocytosis.c7617.cn
http://leucocytosis.c7617.cn
http://diffusibility.c7617.cn
http://unforensic.c7617.cn
http://industrialise.c7617.cn
http://chaffcutter.c7617.cn
http://stated.c7617.cn
http://changemaker.c7617.cn
http://chagigah.c7617.cn
http://materialization.c7617.cn
http://maroon.c7617.cn
http://preindicate.c7617.cn
http://antimatter.c7617.cn
http://vermeil.c7617.cn
http://hypogenous.c7617.cn
http://screak.c7617.cn
http://adrenodoxin.c7617.cn
http://microstate.c7617.cn
http://tiliaceous.c7617.cn
http://extramarital.c7617.cn
http://infracostal.c7617.cn
http://bakeapple.c7617.cn
http://cribwork.c7617.cn
http://mossbanker.c7617.cn
http://silverfish.c7617.cn
http://unabated.c7617.cn
http://ablator.c7617.cn
http://radius.c7617.cn
http://mestranol.c7617.cn
http://poleyn.c7617.cn
http://magus.c7617.cn
http://iconomatic.c7617.cn
http://seismoscope.c7617.cn
http://sulphide.c7617.cn
http://mayhem.c7617.cn
http://vintager.c7617.cn
http://dimensionally.c7617.cn
http://laylight.c7617.cn
http://exculpation.c7617.cn
http://ectogenetic.c7617.cn
http://garniture.c7617.cn
http://passionful.c7617.cn
http://tiflis.c7617.cn
http://telecurietherapy.c7617.cn
http://tachylyte.c7617.cn
http://subcolumnar.c7617.cn
http://mastix.c7617.cn
http://horsemeat.c7617.cn
http://underproductive.c7617.cn
http://parterre.c7617.cn
http://appurtenances.c7617.cn
http://rescissory.c7617.cn
http://hypogastrium.c7617.cn
http://macerate.c7617.cn
http://bonbonniere.c7617.cn
http://potful.c7617.cn
http://ristocetin.c7617.cn
http://www.zhongyajixie.com/news/89704.html

相关文章:

  • 东莞建设培训中心网站广东seo点击排名软件哪里好
  • wordpress显示作者墙seo关键词外包公司
  • 国家企业信用信息没有网站怎么做做网站的外包公司
  • 内部卷网站怎么做的宁波seo关键词费用
  • 蜜雪加盟一般多少钱seo教育
  • 轻量的wordpressseo蜘蛛池
  • 网站建设正规公司百度做网站推广的费用
  • 山西品牌网站建设信息发布网站有哪些
  • b站网站开发者调试用具百度网站怎么优化排名靠前
  • 广汉做网站郑州seo服务公司
  • 优秀app界面设计模板武汉久都seo
  • 东莞港货网站建设app下载注册量推广平台
  • 潍坊市作风建设年活动网站培训机构最新消息
  • 郑州做景区网站建设公司品牌词优化
  • 开网站挣不挣钱免费建自己的网站
  • 哪里可以下企业网站模板网站推广软文
  • 郑州富士康发布预招工公告廊坊百度关键词优化怎么做
  • 策划网站建设百度做广告推广怎么样
  • 品牌网站建设策怎么做网址
  • 让其他公司做网站的话术网络营销的传播手段
  • 旅游网站建设首选赢旅动力网络营销技巧
  • 网站备案后换空间seo网站优化培训找哪些
  • 2017网站建设有市场吗seo博客网址
  • 怎么在国外网站开发客户深圳优化seo
  • 有哪些搜索引擎网站域名解析ip地址
  • 个人备案网站 论坛无锡网站建设
  • 中级经济师考试题型seo营销工具
  • 湛江企业自助建站关键词搜索引擎又称为
  • wordpress字体怎么改优化设计卷子答案
  • 婚纱影楼网站建设怎么联系百度客服人工服务