c++ 这是否真的破坏了严格的别名规则?

栏目: C++ · 发布时间: 6年前

内容简介:http://stackoverflow.com/questions/27003727/does-this-really-break-strict-aliasing-rules

当我用g编译这个示例代码时,我得到这个警告:

warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]

代码:

#include <iostream>

int main() 
{
   alignas(int) char data[sizeof(int)];
   int *myInt = new (data) int;
   *myInt = 34;

   std::cout << *reinterpret_cast<int*>(data);
}

在这种情况下,数据别名不是int,因此将其返回到int不会违反严格的别名规则?还是我在这里遗漏的东西?

编辑:奇怪,当我定义这样的数据:

alignas(int) char* data = new char[sizeof(int)];

编译器警告消失了.堆栈分配是否与严格的混叠有所不同?事实上,它是一个char []而不是一个char *意味着它不能实际上任何类型的别名?

警告是绝对合理的.指向数据的衰减指针不指向int类型的对象,并且转换它不会改变.见 [basic.life]/7

If, after the lifetime of an object has ended and before the storage

which the object occupied is reused or released, a new object is

created at the storage location which the original object occupied,

a

, a reference that referred
to the original object, or

the name of the original object will

and, once the lifetime of the

new object has started, can be used to manipulate the new object, if :

(7.1) — [..]

(7.2) —

the new object is of the same type as the

original object (ignoring the top-level cv-qualifiers)

,

新对象不是一个char数组,而是一个int. P0137 ,正式化了指点的概念,添加了洗衣:

[ Note : If these conditions are not met, a pointer to the new object

can be obtained from a pointer that represents the address of its

storage by calling std::launder (18.6 [support.dynamic]). — end note

]

即您的代码段可以这样纠正:

std::cout << *std::launder(reinterpret_cast<int*>(data));

..或者只是从放置新的结果初始化一个新的指针,这也消除了警告.

http://stackoverflow.com/questions/27003727/does-this-really-break-strict-aliasing-rules


以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

疯传:让你的产品、思想、行为像病毒一样入侵(全新修订版)

疯传:让你的产品、思想、行为像病毒一样入侵(全新修订版)

[美] 乔纳•伯杰(Jonah Berger) / 乔迪、王晋 / 电子工业出版社 / 2016-6 / 68.00

是什么让事物变得流行? 从买轿车、买衣服、吃三明治,到给孩子取名字,你是否知道为什么某些产品会大卖,某些故事被人们口口相传,某些电子邮件更易被转发,或者某些视频链接被疯狂地点击,某些谣言更具传播力,某些思想和行为像病毒一样入侵你的大脑……这本书将为你揭示这些口口相传和社会传播背后的科学秘密,并且告诉你如何将产品、思想、行为设计成具有感染力和传播力的内容。 无论你是大公司的管理者,还是努......一起来看看 《疯传:让你的产品、思想、行为像病毒一样入侵(全新修订版)》 这本书的介绍吧!

JSON 在线解析
JSON 在线解析

在线 JSON 格式化工具

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试