gpt4 book ai didi

java - 如何在while循环中跳过迭代/循环

转载 作者:IT老高 更新时间:2023-10-28 20:48:33 25 4
gpt4 key购买 nike

有没有一种优雅的方式来跳过 while-loop 中的迭代?

我想做的是

  while(rs.next())
{
if(f.exists() && !f.isDirectory()){
//then skip the iteration
}
else
{
//proceed
}
}

最佳答案

继续

while(rs.next())
{
if(f.exists() && !f.isDirectory())
continue; //then skip the iteration

else
{
//proceed
}
}

关于java - 如何在while循环中跳过迭代/循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14856028/

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