0

如何使用运行时在一秒钟内退出循环?我想使用这个代码

public class test {
    public static void main(String[] args) {
    Runtime runtime = Runtime.getRuntime();
    long usedMemory = runtime.totalMemory()-runtime.freeMemory();
    int mbytes = (int) usedMemory/1000; // Used memory (Mbytes)
    String str="a";

        while (somthing < one second ) {


       }
}
4

5 回答 5

1
long startTime = System.currentTimeMillis();

while((System.currentTimeMillis()-startTime)<=1000){
     str=str + "a"; 
}
于 2014-03-07T07:42:34.450 回答
1

好的,您需要记录开始时间,然后将其与当前时间进行比较。

    long start = System.currentTimeMillis();
    String str="a";
    while (true) {
        long now = System.currentTimeMillis();
        if (now - start > 1000)
             break;

        // do your stuff
        str=str + "a"; 
    }

    System.out.println (str);

上面的代码可能会花更多时间来做你想做的事情

于 2014-03-07T07:51:43.923 回答
0
 long startTime = System.currentTimeMillis();
 while((System.currentTimeMillis()-startTime)<1000){
// Your task goes here
}
于 2014-03-07T07:53:35.223 回答
0

在 while 循环中编写代码。它将在 1 秒后退出循环。

long start = System.currentTimeMillis();
long end = start + 1000; //  1000 ms/sec
while (System.currentTimeMillis() < end)
{
    // Write your code here
}
于 2014-03-07T07:53:50.003 回答
0

我认为如果你真的不需要使用运行时,你可以使用这样的东西。

public class test {
    public static void main(String[] args) {
    long startTime = System.currentTimeMillis();
    long currentTime = System.currentTimeMillis();
    long usedMemory = runtime.totalMemory()-runtime.freeMemory();
    int mbytes = (int) usedMemory/1000; // Used memory (Mbytes)
    String str="a";

    while (currentTime-startTime<1000) {
        currentTime = System.currentTimeMillis();
    }
}
于 2014-03-07T07:54:20.593 回答