gpt4 book ai didi

java - 一个带有for循环的程序

转载 作者:行者123 更新时间:2023-12-01 17:06:35 27 4
gpt4 key购买 nike

当我想到这段代码时,我正在编写一个 for 循环程序。

for(int i=1; i<=10; i++,i++)

程序运行正常,输出也正确。但后来我尝试了以下代码:

for(int i=1; i<=10; ++i,++i)

for(int i=1; i<=10; ++i,i++)

for(int i=1; i<=10; i++,++i)

令我惊讶的是,它们都产生相同的输出,1 3 5 7 9。现在我的问题是,for 循环到底是如何工作的,以及为什么所有代码​​在以下情况下都会产生相同的输出:我在同一个 for 循环中使用了前增量和后增量?

最佳答案

相当于

int i = 1;
while(i <= 10)
{
//stuff would happen here but these loops are all empty
i++;
i++;
}

int i = 1;
while(i <= 10)
{
//stuff would happen here but these loops are all empty
++i;
++i;
}

int i = 1;
while(i <= 10)
{
//stuff would happen here but these loops are all empty
++i;
i++;
}

int i = 1;
while(i <= 10)
{
//stuff would happen here but these loops are all empty
i++;
++i;
}

在这种情况下,无论是前自增还是后自增,都没有关系。它只是将 i 的值增加 1

关于java - 一个带有for循环的程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25324132/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com