gpt4 book ai didi

java - 如何在 for 循环中每 50 次迭代停止?

转载 作者:行者123 更新时间:2023-11-29 09:33:29 32 4
gpt4 key购买 nike

在 for 循环中,我正在执行 Mongo DB 查询,该循环包含 1500 次迭代。那么无论如何,在 50 次迭代之后,我想给数据库一些时间,即 Thread.currentThread().sleep(200);

所以请告诉我怎样才能在每 50 次后停下来一会儿:

for (int i = 0; i < n; i++){
// ????
}

最佳答案

你为此使用模数

if( i % 50 == 0 ){
Thread.sleep(200);
}

关于java - 如何在 for 循环中每 50 次迭代停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13721702/

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