以下代码是否调用 UB?

发布于 2024-08-17 23:27:04 字数 130 浏览 1 评论 0原文

以下代码是否调用 UB ?

int main(){
  volatile int i = 0;
  volatile int* p = &i;
  int j = ++i * *p;
}

Does the following code invoke UB ?

int main(){
  volatile int i = 0;
  volatile int* p = &i;
  int j = ++i * *p;
}

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

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

发布评论

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

评论(2

对你而言 2024-08-24 23:27:04

是的 - 可以首先评估 ++i 或 *p(即 i)。

Yes - either ++i or *p (which is i) can be evaluated first.

撩发小公举 2024-08-24 23:27:04

是的,这是未定义的行为,因为您试图违反第二条规则。

该标准规定

1) 在上一个和下一个序列点之间,对象的存储值最多应通过表达式的求值修改一次。

2) 此外,仅应访问先前值以确定要存储的值

注意*运算符的操作数的求值顺序是未指定,而*p只不过是我。

Yes that is Undefined Behavior because you are trying to violate the second rule..

The Standard states that

1) Between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression.

2) Furthermore, the prior value shall be accessed only to determine the value to be stored.

Note: The order of evaluation of the operands of * operator is unspecified and *p is nothing but i.

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