for(int i = 1; i < 10000; i++) {
Command nextCommand = getNextCommandToExecute();
}
我想运行上述程序 60 分钟。所以我需要做一些类似的事情,而不是 for 循环
long startTime = System.nanoTime();
do{
Command nextCommand = getNextCommandToExecute();
} while (durationOfTime is 60 minutes);
但我不确定,我应该如何让这个程序运行 60 分钟。