链式 static_cast 是如何明确定义的?

发布于 2024-12-21 03:41:38 字数 400 浏览 0 评论 0原文

(5.2.9/10)“指向 cv1 void 的指针”类型的右值可以转换为“指向 cv2 T 的指针”类型的右值,其中 T 是对象类型,cv2 简历资格与以下相同或更高: 简历1。指向对象的指针类型的值转换为“指向 cv 的指针” void”并返回到原始指针类型将拥有其原始指针类型 值。

既然从 void* 转换的结果是 int* (原始指针类型),那么什么使下面的转换有效呢?

int i = 10;
double *pd_2 = static_cast<double*>(static_cast<void*>(&i));

(5.2.9/10) An rvalue of type "pointer to cv1 void" can be converted to an rvalue of type "pointer to cv2 T," where T is an object type and cv2
is the same cv-qualification as, or greater cv-qualification than,
cv1. A value of type pointer to object converted to "pointer to cv
void" and back to the original pointer type will have its original
value.

Since, the result of casting from void* has be int* (original pointer type) so, what makes the following cast valid?

int i = 10;
double *pd_2 = static_cast<double*>(static_cast<void*>(&i));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃素的狼 2024-12-28 03:41:38

该演员阵容没有明确定义。

That cast isn't well-defined.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文