C ++ Delay

Source: Internet
Author: User
Tags sleep function

Ms vc ++ can use the sleep function of MFC, the parameter is millisecond.

The delay function must be written by yourself. It is not included in the compiler.

# Include <time. h> // header file

Time_t start_time, cur_time; // variable Declaration

Time (& start_time );
Do {time (& cur_time );
} While (cur_time-start_time) <3 );

The above 3 is 3 seconds later

It is easy to rewrite it into your own delay function:

# Include <time. h>
Void delay (INT Sec)
{
Time_t start_time, cur_time; // variable Declaration
Time (& start_time );
Do {time (& cur_time );
} While (cur_time-start_time) <Sec );
}

Call:
(Void) delay (5); // 5 seconds behind

Delay shorter than one second can be written as follows:
Clock_t start_time, cur_time;
Start_time = clock ();
While (clock ()-start_time) <3.0 * clocks_per_sec)
{
}
However, some compilers do not support clock.

We recommend Ms VC ++ MFC sleep (MS)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.