Implementation of sleep in QT

Source: Internet
Author: User
Tags sleep function qtest

Using the sleep function in QT is difficult. This function is not available in several common header files. There is a sleep in the QTest class for unit testing. You can run the following command:

# Include
<
QTest
>

.......

QTest ::QSleep
(
100
);

In this way. In the help document, qSleep actually calls the sleep function provided by the operating system. For example, it calls nanosleep () on Linux and Sleep () on windows ()



Of course, we can also use the sleep that comes with the operating system to achieve sleep, through Q_ OS _WIN32,
Q_ OS _LINUX for Conditional compilation

 

# If defined Q_ OS _WIN32 <br/> # include <windows. h> <br/> void sleep (unsigned long nSeconde) <br/>{< br/> Sleep (nSeconde) * 1000 ); <br/>}< br/> # endif <br/> # if defined Q_ OS _LINUX <br/> # include <unistd. h> <br/> # endif

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.