2012-06-28 28 views
5
के लिए
for(;;) { 
    int rand_number = rand() % 2; 
    cout << rand_number; 
} 

की गति इन छोरों 1 है और 0 मैट्रिक्स फिल्म की तरह स्क्रीन पर है (LOL) उत्पन्न करता है लेकिन कोड वास्तव में तेजी से निष्पादित करता है वहाँ किसी भी तरह से हम कर कि संख्या धीरे धीरे दिखाई देते हैं?धीमा पाश

+2

क्या आप जानते हैं कि बाकी बाहरी लूप कभी निष्पादित नहीं होगा? –

+0

हाँ आप r rite लेकिन मेरे पास Iterators था इससे पहले कि मैंने इसे हटा दिया, बाहरी लूप – Kamran

उत्तर

7

उपयोग Sleep(3000); उदाहरण

#include <iostream> 
#include <stdlib.h> 
#include <Windows.h> 

using namespace std; 

int main(int argc,char**argv){ 
    cout<<"a"<<endl; 
    Sleep(3000); 
    cout<<"b"<<endl; 

    return 0; 
} 
3

usleep देखें। आप नींद का भी उपयोग कर सकते हैं, लेकिन मुझे लगता है कि यह बहुत धीमा होगा।

USLEEP(3)    BSD Library Functions Manual    USLEEP(3) 

NAME 
    usleep -- suspend thread execution for an interval measured in microseconds 

LIBRARY 
    Standard C Library (libc, -lc) 

SYNOPSIS 
    #include <unistd.h> 

    int 
    usleep(useconds_t useconds); 

DESCRIPTION 
    The usleep() function suspends execution of the calling thread until either useconds microseconds have elapsed or a signal is delivered to the thread whose action 
    is to invoke a signal-catching function or to terminate the thread or process. The actual time slept may be longer, due to system latencies and possible limita- 
    tions in the timer resolution of the hardware. 

    This function is implemented, using nanosleep(2), by pausing for useconds microseconds or until a signal occurs. Consequently, in this implementation, sleeping 
    has no effect on the state of process timers and there is no special handling for SIGALRM. 

RETURN VALUES 
    The usleep() function returns the value 0 if successful; otherwise the value -1 is returned and the global variable errno is set to indicate the error. 

ERRORS 
    The usleep() function will fail if: 

    [EINTR]   A signal was delivered to the process and its action was to invoke a signal-catching function. 

SEE ALSO 
    nanosleep(2), sleep(3) 

HISTORY 
    The usleep() function appeared in 4.3BSD. 

BSD       February 13, 1998       BSD 
+0

या विंडोज पर 'नींद' को बाहर करने के लिए भूल गए। –

1

के लिए 3000 मिलीसेकेंड के लिए इंतजार करना तुम सिर्फ जब तक आप आप एक यादृच्छिक व्यर्थ CIN में रख सकते हैं के लिए तैयार हैं इसे रोकने के लिए चाहते हैं। जब तक आप रिटर्न दबाएंगे तब तक यह केवल इनपुट के लिए प्रतीक्षा करेगा।