Time Delay in C++: A Simple Solution for a Few Seconds Delay

In summary: Can you give me an example of how to use this Sleep function?In summary, you can use Sleep(milliseconds) to delay a few seconds in C++.
  • #1
DrKareem
101
1
Hello. I'm wondering how to make a time delay of a few seconds using C++. The simplest way that came up to my mind is just to make loop for a few millions time or so, but the delay would change from computer to computer.
 
Technology news on Phys.org
  • #2
You could simply use the ordinary C time functions. See "time" and "clock" in the "ctime" header.
 
  • #3
Wait approximately 5 seconds with something like this:

for (time_t t = time() + 5; time() < t; ) {}

If you need more accuracy, use clock_t and clock() instead, along with the CLK_TCK value. If you are programming for Windows, use Sleep(5000) to let the process sleep for 5000 milliseconds without wasting all those CPU cycles. For other OSes, check the documentation for a similar function.
 
  • #4
sleep(<time in ms>) is the standard way of doing it.
 
  • #5
Are those functions in C or C++? If the latter, what library should I include?
 
  • #6
Under Unix sleep is in unistd.h. I'm not sure about windows.
 
  • #7
No such library in windows. There is a time.h windows though, but no sleep function. Is there a way to view the source file?
 
  • #8
Orefa said:
Wait approximately 5 seconds with something like this:

for (time_t t = time() + 5; time() < t; ) {}


error C2660: 'time' : function does not take 0 parameters
 
  • #9
I found this piece of code on the net:

time_t start_time, cur_time;

time(&start_time);
do
{
time(&cur_time);
}
while((cur_time - start_time) < n);

where n is the number of seconds. when i run my programme, it first does the delay, then run the rest.

i mean that the test programme should cout my first name, delay 3 seconds and the output my last name, but it delays 3 seconds then outputs my full name. weird.
 
  • #10
Ugh, I did a google search and it said windows.h
 
  • #11
void sleep( clock_t wait )
{
clock_t goal;
goal = wait + clock();
while( goal > clock() )
;
}

Found the sleep function on the net, but still, the programme does the delay, then outputs the full name.

*shrugs*
 
  • #12
DrKareem said:
error C2660: 'time' : function does not take 0 parameters
Oh right, that should have been time(0) instead of just time().

But are you using Unix or Windows? Because #include <windows.h> with Sleep(milliseconds) in Windows or #include <unistd.h> with sleep(milliseconds) in Unix is simpler and more reliable. The sleep function you show that uses clock_t instead of time_t does not count in seconds or milliseconds but in system clock ticks. This varies from system to system so the pause duration is not consistent across systems (if consistency matters).

DrKareem said:
i mean that the test programme should cout my first name, delay 3 seconds and the output my last name, but it delays 3 seconds then outputs my full name. weird.

Your first name may be in cout's output buffer but it won't show until the buffer is flushed. Try using cout.flush() to force it out before the pause.
 
  • #13
I have both windows and linux, but i usually programme on windows since I'm new to linux. Flushing the buffer did take care of the problem. Thanks guys!
 
  • #14
This varies from system to system so the pause duration is not consistent across systems (if consistency matters).
Sure it is -- if you remember to convert using CLOCKS_PER_SEC! (I think that's how the macro is spelled)
 
  • #15
Edit: the C standard does not require any fine granularity for clock(). It has to "tick" at least once per second, even if CLOCKS_PER_SEC is 1000000. So if you choose 50 ms depending on the implementation of C/C++ you may still get 1 full second.

Sleep(DWORD milliseconds) is the Windows api call you want, in
windows.h Consider using it.

Implementing a roll-your-own time delay means the time delay will not port - and this may mean going from Windows XP on a PIII 500MHz to Windows XP on a P4 3.2GHz will cause the code not to behave correctly.

Plus, turning on optimization may allow a compiler optimize away a few of these kinds of homegrown loops

Use the api - all time delay calls are hardware/OS dependent anyway, so you are not losing portability. You are probably gaining some.
 
Last edited:
  • #16
And if you really want, demarcate a platform-dependent block of your source code, and define your own "my_sleep" which is merely a wrapper for whatever the best method of sleeping is on a given system.

(So, when porting, the only code that ought to need changing is the code in this block)
 
  • #17
Sleep(milliseconds) in c++

You can simply use the Sleep(milliseconds) function which must have windows.h included...
I'm a little late, but just in case you still check it a year after the fact :)

Example:

#include <windows.h>
Sleep(1000);
//this will sleep for 1 second (1000) milliseconds
//It of course needs to be put into some function, but I'm a smidge too lazy :)
 
  • #18
Orefa said:
But are you using Unix or Windows? Because #include <windows.h> with Sleep(milliseconds) in Windows or #include <unistd.h> with sleep(milliseconds) in Unix is simpler and more reliable.
The sleep function in Unix is in seconds. This might create a problem if the Windows program is ported to Unix. A better solution might be to use the Posix usleep function, which takes integer microseconds as an argument (but the time needs to be less than 1 million microseconds).

Orefa said:
for (time_t t = time() + 5; time() < t; ) {}
Never, ever do something like this. Sending the CPU into a busy loop is a very, very bad thing to do.
 
  • #19
Let's not resurrect ancient threads. Thanks.

- Warren
 

1. What is time delay in C++?

Time delay in C++ refers to pausing or delaying the execution of a program for a specified amount of time. This is commonly used in applications where timing is critical, such as games or simulations.

2. How is time delay implemented in C++?

Time delay in C++ can be implemented using the sleep() function from the ctime library. This function takes in the number of seconds to pause the program for and can also be used to pause for fractions of a second using the usleep() function.

3. What is the difference between time delay and time measurement in C++?

Time delay in C++ is used to pause the program for a specific amount of time, whereas time measurement is used to track the elapsed time of a program or a specific part of a program. Time measurement can be done using the clock() function from the ctime library.

4. Can time delay be used for precise timing in C++?

While time delay can be used for basic timing in C++, it is not recommended for precise timing as it is affected by factors such as system load and other running processes. For precise timing, it is better to use libraries such as chrono or boost::timer.

5. Is time delay platform-dependent in C++?

Yes, time delay in C++ can be platform-dependent as it relies on the system clock and the implementation of the sleep() function may vary across different operating systems. It is important to consider this when writing cross-platform code.

Similar threads

  • Electrical Engineering
Replies
8
Views
722
  • Programming and Computer Science
Replies
3
Views
1K
Replies
4
Views
2K
  • Computing and Technology
Replies
5
Views
1K
  • Special and General Relativity
Replies
34
Views
571
  • Programming and Computer Science
Replies
2
Views
2K
Replies
7
Views
661
  • Electrical Engineering
Replies
13
Views
1K
  • Special and General Relativity
Replies
14
Views
1K
  • MATLAB, Maple, Mathematica, LaTeX
Replies
2
Views
1K
Back
Top