java 与 c 整数

发布于 2024-11-04 15:53:51 字数 515 浏览 1 评论 0原文

可能的重复:
Java 与 C 中的 ++i + ++i + ++i

使用 Java:

public class Main {
    public static void main(String[] args) {
        int a=10;
        a=a++;
        a=a++;
        System.out.println(a);
    }
}

输出:10

使用涡轮C:

void main(){
    int a=10;
    a=a++;
    a=a++;
    printf("%d",a);
}

输出:12 这是怎么发生的?

Possible Duplicate:
++i + ++i + ++i in Java vs C

Using Java:

public class Main {
    public static void main(String[] args) {
        int a=10;
        a=a++;
        a=a++;
        System.out.println(a);
    }
}

Output: 10

Using turbo C:

void main(){
    int a=10;
    a=a++;
    a=a++;
    printf("%d",a);
}

Output: 12
How is this happening?

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

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

发布评论

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

评论(1

多彩岁月 2024-11-11 15:53:51

a=a++未定义行为。因此,即使两个 C 程序也可能返回不同的结果。

后缀++在运算后使变量自增,但你不知道它是否会在计算正确的表达式后或赋值后使变量自增,也不知道它是否会会影响结果。

假设b是一个临时寄存器/变量,用于计算正确的表达式:

选项1:

a赋值给b,b赋值给a,b加1。 (a将相同)

选项2:

a分配给b,b加1,b分配给a。 (a 将递增)

a=a++ is undefined behavior. so even two C programs might return different results for that.

the postfix ++ increments the variable after the operation, but you don't know if it will increment the variable after the calculation of the right expression or after the assignment, and you don't know if it will affect the result or not.

Assuming b is a temporary register / variable used for the calculation of the right expression:

option 1:

a is assigned to b, b assigned to a, b incremented by one. (a will be the same)

option 2:

a is assigned to b, b incremented by one, b assigned to a. (a will be incremented)

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