does any knows how to set a delay in japple - timmer? before running test method i want to set one sec dalay.

public void test()
{
    //some code here
}

i tried this but didnt work.

public void test()
{
    int i = 10000;
    while(i >= 0){
        i--;
    }

    //some code here
}

also tried:

public void test()
    {
     timerClass.setDelay(1000);
        int i = 10000;
        while(i >= 0){
            i--;
        }

        //some code here
    }


                                    }

Recommended Answers

All 2 Replies

Modern systems can decrement a 10K value in about 10 nanoseconds. This is not the approach you want to take. There are system timers that will handle timers in nanosecond scales quite nicely. Is this a Java application?

Try putting that setDelay() code inside your loop.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.