c 和 java 差异_C和Java中的逻辑差异

C++表达式中的未定义行为解析
本文探讨了C++编程中一个重要的概念——未定义行为(Undefined Behavior)。当在一个表达式中写入一个对象后,所有对该对象的访问都必须直接参与计算新的值。例如,`i=i+1`是允许的,因为访问`i`用于确定其最终值。然而,如`06000`这样的例子是不允许的,因为`a[i]`的访问与`i`的更新无关,这导致无法确定访问应发生在增量之前还是之后。标准规定这种情况下行为是未定义的,因此,为了保证移植性,程序员应避免使用这类构造。

..the second sentence says: if an object is written to within a full expression, any and all accesses to it within the same expression must be directly involved in the computation of the value to be written. This rule effectively constrains legal expressions to those in which the accesses demonstrably precede the modification. For example, the old standby i = i + 1 is allowed, because the access of i is used to determine i’s final value. The example

06000

is disallowed because one of the accesses of i (the one in a[i]) has nothing to do with the value which ends up being stored in i (which happens over in i++), and so there’s no good way to define–either for our understanding or the compiler’s–whether the access should take place before or after the incremented value is stored. Since there’s no good way to define it, the Standard declares that it is undefined, and that portable programs simply must not use such constructs.

Similar to a[i++]=i (which invokes UB) your expression too invokes UB.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值