- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注:这个问题已被重命名和减少,以使其更具针对性和可读性。大多数评论都引用了旧文本。
根据标准,不同类型的对象不能共享相同的内存位置。所以这不合法:
std::array<short, 4> shorts;
int* i = reinterpret_cast<int*>(shorts.data()); // Not OK
char
的指针访问任何对象。或
unsigned char
:
int i = 0;
char * c = reinterpret_cast<char*>(&i); // OK
char * c = read_socket(...);
unsigned * u = reinterpret_cast<unsigned*>(c); // huh?
最佳答案
由于涉及指针转换,您的某些代码存在问题。请记住,在这些情况下 reinterpret_cast<T*>(e)
具有 static_cast<T*>(static_cast<void*>(e))
的语义因为所涉及的类型是标准布局。 (实际上,我建议您在处理存储时始终通过 static_cast
使用 cv void*
。)
仔细阅读标准表明,在指针转换为或来自 T*
期间假设确实存在一个实际对象 T*
涉及——这在你的一些片段中很难实现,即使在“作弊”时也是如此,这要归功于所涉及的类型的琐碎(稍后会详细介绍)。然而,这不是重点,因为......
别名与指针转换无关。 这是 C++11 文本,概述了通常称为“严格别名”规则的规则,来自 3.10 Lvalues and rvalues [basic.lval]:
10 If a program attempts to access the stored value of an object through a glvalue of other than one of the following types the behavior is undefined:
- the dynamic type of the object,
- a cv-qualified version of the dynamic type of the object,
- a type similar (as defined in 4.4) to the dynamic type of the object,
- a type that is the signed or unsigned type corresponding to the dynamic type of the object,
- a type that is the signed or unsigned type corresponding to a cv-qualified version of the dynamic type of the object,
- an aggregate or union type that includes one of the aforementioned types among its elements or non-static data members (including, recursively, an element or non-static data member of a subaggregate or contained union),
- a type that is a (possibly cv-qualified) base class type of the dynamic type of the object,
- a char or unsigned char type.
magic_cast<T*>(p)
其中“以某种方式”将指针转换为另一种指针类型。通常这将是
reinterpret_cast
,在某些情况下会产生未指定的结果,但正如我之前解释的那样,对于指向标准布局类型的指针,情况并非如此。那么很明显,您的所有片段都是正确的(用
reinterpret_cast
替换
magic_cast
),因为
magic_cast
的结果不涉及任何左值。 .
magic_cast
的片段,但我认为这是正确的:
// assume constexpr max
constexpr auto alignment = max(alignof(int), alignof(short));
alignas(alignment) char c[sizeof(int)];
// I'm assuming here that the OP really meant to use &c and not c
// this is, however, inconsequential
auto p = magic_cast<int*>(&c);
*p = 42;
*magic_cast<short*>(p) = 42;
为了证明我的推理,假设这个表面上不同的片段:
// alignment same as before
alignas(alignment) char c[sizeof(int)];
auto p = magic_cast<int*>(&c);
// end lifetime of c
c.~decltype(c)();
// reuse storage to construct new int object
new (&c) int;
*p = 42;
auto q = magic_cast<short*>(p);
// end lifetime of int object
p->~decltype(0)();
// reuse storage again
new (p) short;
*q = 42;
这个片段是精心构建的。特别是在
new (&c) int;
我可以使用
&c
即使
c
由于 3.8 对象生命周期 [basic.life] 的第 5 段中规定的规则而被销毁。第 6 段对存储引用给出了非常相似的规则,第 7 段解释了变量、指针和引用在重用存储后用于引用对象的情况——我将它们统称为 3.8/5- 7.
&c
被(隐式)转换为
void*
,这是对尚未重用的存储指针的正确使用之一。同样
p
来自
&c
新前
int
被构造。它的定义或许可以在
c
销毁后移到。 ,取决于实现魔法的深度,但肯定不是在
int
之后构造:第 7 段将适用,这不是允许的情况之一。
short
的 build 对象也依赖于
p
成为指向存储的指针。
int
和
short
是微不足道的类型,我不必使用对析构函数的显式调用。我也不需要对构造函数的显式调用(也就是说,调用在
<new>
中声明的通常的标准位置 new )。从 3.8 对象生命周期 [basic.life]:
1 [...] The lifetime of an object of type T begins when:
- storage with the proper alignment and size for type T is obtained, and
- if the object has non-trivial initialization, its initialization is complete.
The lifetime of an object of type T ends when:
- if T is a class type with a non-trivial destructor (12.4), the destructor call starts, or
- the storage which the object occupies is reused or released.
q
之后,我最终得到了原始片段。
p
不能折叠。也就是说,以下内容绝对是错误的:
alignas(alignment) char c[sizeof(int)];
*magic_cast<int*>(&c) = 42;
*magic_cast<short*>(&c) = 42;
如果我们假设
int
对象是(简单地)用第二行构造的,那么这一定意味着
&c
成为指向已重用存储的指针。因此第三行是不正确的——尽管由于 3.8/5-7 而不是由于严格意义上的别名规则。
char c[sizeof(int)]
的内容。对象通过类型为
int
的泛左值,这不是允许的异常(exception)之一。相比之下,
*magic_cast<unsigned char>(&c) = 42;
会很好(我们假设一个
short
对象在第三行被简单地构造)。
*some_magic_pointer = foo;
时您很可能面临违反 3.8/5-7(无论该指针获得多么神奇)或别名规则的违反。这意味着也要存储 new 表达式的结果,因为一旦构造了对象,您很可能无法重用魔术指针——再次由于 3.8/5-7。
char
或
unsigned char
)很好,但是您甚至不使用
reinterpret_cast
或任何魔法。
static_cast
通过
cv void*
可以说很适合这项工作(尽管我确实觉得标准可以在那里使用一些更好的措辞)。
关于c++ - 允许使用 char* 别名 T*。反过来也允许吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12612488/
我有一个 ASP.NET 网站,我希望只允许 AD 组中的用户访问该网站。我正在使用如下的 web.config 片段,但这似乎不起作用:
仅当选中所有框时才应禁用“允许”按钮。我该怎么做?我已经完成了 HTML 部分,如下所示。如何执行其中的逻辑部分?即使未选中一个复选框,也应禁用“允许”按钮
当前有一个Navigator.push(context,route),但是上下文部分返回了错误,在尝试调试后,我发现问题是因为我在调用一个函数而不是直接将home设置为widget树。但是现在我不确定
这是我的邮政编码正则表达式 ^[a-zA-Z0-9]{1,9}$ 但不允许 A-12345。如何更改 - 也将被允许的正则表达式? 最佳答案 在字符集的开头或结尾添加-([...]): ^[-a-zA
我目前正在建立我的网站,但遇到了一个问题 JavaScript 中的混合内容阻止 当我尝试加载和显示来自 的图像和页面时,Chrome、Mozilla 和 Explorer 会发生这种情况http 我
我见过使用: [mysqld] bind-address = 255.112.324.12 允许远程访问单个 IP。我如何允许从 mysql 远程访问所有 IP? 最佳答案 如果你想允许它用于所
我想知道是否可以使用模板实现某些功能。我想要做的是允许特定的“复制构造函数和赋值运算符”从一个模板到另一个模板并禁用其他模板。 我想我只完成了一件我想要的事情,所以我提供了下面的类(class)。对于
这个问题在这里已经有了答案: How to validate an email address in PHP (15 个答案) 关闭 2 年前。 正则表达式让我大吃一惊。我如何更改此设置以验证带有加
解析可以采用以下格式之一的日期的最佳方法是什么 "dd-MM-yyyy HH:mm" "dd/MM/yyyy HH:mm" "dd.MM.yyyy HH:mm" 无需创建 3 个 SimpleD
我们知道,下面的代码格式不正确,因为成员 x 在依赖的基类中。但是,将指定行上的 x 更改为 this->x 将修复错误。 template struct B { int x; }; tem
如果能帮助我理解“Java 并发实践”中的以下内容,我将不胜感激: Calling an overrideable instance method(one that is neither privat
此时如果上传一个不在预定义的安全扩展名列表,如.lrc,会报错: File type does not meet security guidelines. Try another. 解决此问题有
我有一个运行韵律,可以为我的几个域和一个 friend 域处理 XMPP。我 friend 域中的一位用户(他的妻子)想更改她的密码(实际上她忘记了她,所以我会用 prosodyctl 设置一个,然后
使用 nginx,您可以允许和拒绝范围和 ips (https://www.nginx.com/resources/admin-guide/restricting-access/)。使用realip模
什么是一些好的克里金法/插值想法/选项,可以让重度权重的点在绘制的 R map 上的轻权重点上流血? 康涅狄格州有八个县。我找到了质心并想绘制这八个县中每个县的贫困率。其中三个县人口稠密(约 100
我正在使用 virtualbox + ubuntu + vagrant . 但是我不能ping或 wget任何网址。请指导我如何允许虚拟机访问我的主机的互联网? 最佳答案 这对我有用。 使用此配置 V
标题可能有点令人困惑,所以让我向您解释一下。 在 Swift 中,我们可以拥有带有默认参数值的函数,例如: func foo(value: Int = 32) { } 我们也可以有 In-Out 参数
有TextView1 和TextView2。 TextView2 应该 float 在 TextView1 的右侧。只要两个 TextView 的总宽度不使 TextView2 与右侧的框重叠,Tex
使用 Magento 收集方法 addFieldToFilter 时是否可以允许按 NULL 值进行过滤?我想选择集合中具有自定义属性的所有产品,即使没有为该属性分配任何值。 最佳答案 您不需要使用
我正试图从 .htaccess 文件中的规则中“排除”一个目录(及其所有文件夹)... 不确定这是否可能? .htaccess 文件是这样的: Order Allow,Deny Deny from a
我是一名优秀的程序员,十分优秀!